nixpkgs/pkgs/development/python-modules/pysrim/default.nix
Christopher Ostrouchov 1d46027c3d pythonPackages.pysrim: init at 0.5.8 (#44756)
- compatible with 2.7, 3+
 - tests are not run due to requiring git lfs download of repository
2018-08-09 00:31:51 +02:00

31 lines
636 B
Nix

{ lib
, fetchPypi
, buildPythonPackage
, pytestrunner
, numpy
, pyyaml
}:
buildPythonPackage rec {
pname = "pysrim";
version = "0.5.8";
src = fetchPypi {
inherit pname version;
sha256 = "6c297b4ea6f037946c72e94ddd9a7624cf2fd97c488acbee9409001c970754f1";
};
buildInputs = [ pytestrunner ];
propagatedBuildInputs = [ numpy pyyaml ];
# Tests require git lfs download of repository
doCheck = false;
meta = {
description = "Srim Automation of Tasks via Python";
homepage = https://gitlab.com/costrouc/pysrim;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ costrouc ];
};
}