biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pysrim / default.nix
blob1c13452b0e558d8cc60e32370ee02e2c0ef92038
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   numpy,
7   pythonOlder,
8   pyyaml,
9 }:
11 buildPythonPackage rec {
12   pname = "pysrim";
13   version = "0.5.10";
14   pyproject = true;
16   disabled = pythonOlder "3.7";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-raCI9z9+GjvwhSBugeD4PticHQsjp4ns0LoKJQckrug=";
21   };
23   postPatch = ''
24     substituteInPlace setup.py \
25       --replace-fail "'pytest-runner', " ""
26   '';
28   build-system = [ setuptools ];
30   dependencies = [
31     numpy
32     pyyaml
33   ];
35   # Tests require git lfs download of repository
36   doCheck = false;
38   # pythonImportsCheck does not work
39   # TypeError: load() missing 1 required positional argument: 'Loader'
41   meta = with lib; {
42     description = "Srim Automation of Tasks via Python";
43     homepage = "https://gitlab.com/costrouc/pysrim";
44     license = licenses.mit;
45     maintainers = [ ];
46   };