mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
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
This commit is contained in:
parent
1f00380cfa
commit
1d46027c3d
30
pkgs/development/python-modules/pysrim/default.nix
Normal file
30
pkgs/development/python-modules/pysrim/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -4103,6 +4103,8 @@ in {
|
||||
|
||||
pyspf = callPackage ../development/python-modules/pyspf { };
|
||||
|
||||
pysrim = callPackage ../development/python-modules/pysrim { };
|
||||
|
||||
pysrt = callPackage ../development/python-modules/pysrt { };
|
||||
|
||||
pytools = callPackage ../development/python-modules/pytools { };
|
||||
|
Loading…
Reference in New Issue
Block a user