python3Packages.sat-tmp: init at 0.8.0 (#425287)

This commit is contained in:
Valentin Gagarin
2025-07-21 11:58:03 +02:00
committed by GitHub
2 changed files with 46 additions and 0 deletions
@@ -0,0 +1,44 @@
{
lib,
buildPythonPackage,
fetchhg,
setuptools,
wokkel,
}:
buildPythonPackage rec {
pname = "sat-tmp";
version = "0.8.0";
pyproject = true;
src = fetchhg {
url = "https://repos.goffi.org/sat_tmp";
rev = "v${version}";
hash = "sha256-CEy0/eaPK0nHzsiJq3m7edNyxzAhfwBaNhFhLS0azOw=";
};
build-system = [ setuptools ];
dependencies = [ wokkel ];
# Taken from import_test.py
pythonImportsCheck = [
"sat_tmp.wokkel.pubsub"
"sat_tmp.wokkel.rsm"
"sat_tmp.wokkel.mam"
];
# no pytest tests exist
meta = {
description = "Libervia temporary third party patches";
longDescription = ''
This module is used by Libervia project (formerly Salut à Toi) project to patch third party modules
when the patches are not yet available upstream. Patches are removed from this module once merged upstream.
'';
homepage = "https://libervia.org";
license = lib.licenses.agpl3Plus;
maintainers = [ lib.maintainers.ethancedwards8 ];
teams = [ lib.teams.ngi ];
};
}
+2
View File
@@ -15969,6 +15969,8 @@ self: super: with self; {
sasmodels = callPackage ../development/python-modules/sasmodels { };
sat-tmp = callPackage ../development/python-modules/sat-tmp { };
satel-integra = callPackage ../development/python-modules/satel-integra { };
sbom2dot = callPackage ../development/python-modules/sbom2dot { };