ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pysrim / default.nix
blob4f295dfc7c27fe821c103a136603a9fc3e2bede9
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 , pytest-runner
5 , numpy
6 , pyyaml
7 }:
9 buildPythonPackage rec {
10   pname = "pysrim";
11   version = "0.5.10";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "ada088f73f7e1a3bf085206e81e0f83ed89c1d0b23a789ecd0ba0a250724aee8";
16   };
18   buildInputs = [ pytest-runner ];
19   propagatedBuildInputs = [ numpy pyyaml ];
21   # Tests require git lfs download of repository
22   doCheck = false;
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   };