1{ lib
2, fetchPypi
3, buildPythonPackage
4, pytestrunner
5, numpy
6, pyyaml
7}:
8
9buildPythonPackage rec {
10 pname = "pysrim";
11 version = "0.5.8";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "6c297b4ea6f037946c72e94ddd9a7624cf2fd97c488acbee9409001c970754f1";
16 };
17
18 buildInputs = [ pytestrunner ];
19 propagatedBuildInputs = [ numpy pyyaml ];
20
21 # Tests require git lfs download of repository
22 doCheck = false;
23
24 meta = {
25 description = "Srim Automation of Tasks via Python";
26 homepage = https://gitlab.com/costrouc/pysrim;
27 license = lib.licenses.mit;
28 maintainers = with lib.maintainers; [ costrouc ];
29 };
30}