1{ lib 2, fetchPypi 3, buildPythonPackage 4, pytest-runner 5, numpy 6, pyyaml 7}: 8 9buildPythonPackage rec { 10 pname = "pysrim"; 11 version = "0.5.10"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "ada088f73f7e1a3bf085206e81e0f83ed89c1d0b23a789ecd0ba0a250724aee8"; 16 }; 17 18 buildInputs = [ pytest-runner ]; 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}