1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 setuptools, 6}: 7 8buildPythonPackage rec { 9 pname = "scikits-odes-core"; 10 version = "3.1.1"; 11 pyproject = true; 12 13 src = fetchFromGitHub { 14 owner = "bmcage"; 15 repo = "odes"; 16 tag = "v${version}"; 17 hash = "sha256-lqkPCVMQIVpZrkNUhYhAlFU71eUAaWwN8v66L7Rz91U="; 18 }; 19 20 sourceRoot = "${src.name}/packages/scikits-odes-core"; 21 22 build-system = [ setuptools ]; 23 24 pythonImportsCheck = [ "scikits_odes_core" ]; 25 26 # no tests 27 doCheck = false; 28 29 meta = { 30 description = "Core support module for scikits-odes"; 31 homepage = "https://github.com/bmcage/odes/blob/master/packages/scikits-odes-core"; 32 license = lib.licenses.bsd3; 33 maintainers = with lib.maintainers; [ idontgetoutmuch ]; 34 }; 35}