Unverified Commit 12490608 authored by Ethan Carter Edwards's avatar Ethan Carter Edwards
Browse files

python3Packages.sat-tmp: init at 0.8.0

parent b45d4478
Loading
Loading
Loading
Loading
+44 −0
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -15929,6 +15929,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 { };