lol

Merge pull request #118519 from rmcgibbo/gsd

python3Packages.gsd: 1.9.3 -> 2.4.1

authored by

Sandro and committed by
GitHub
979c73ea 9cd641dd

+11 -7
+11 -7
pkgs/development/python-modules/gsd/default.nix
··· 1 1 { lib, buildPythonPackage, fetchFromGitHub, isPy27 2 - , numpy 3 - , pytest 2 + , cython, numpy 3 + , pytestCheckHook 4 4 }: 5 5 6 6 buildPythonPackage rec { 7 - version = "1.9.3"; 7 + version = "2.4.1"; 8 8 pname = "gsd"; 9 9 disabled = isPy27; 10 10 ··· 12 12 owner = "glotzerlab"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - sha256 = "07hw29r2inyp493dia4fx3ysfr1wxi2jb3n9cmwdi0l54s2ahqvf"; 15 + sha256 = "02zxfmqw7a5kz8qjdph9a9961mbkd4haxwwa28yjkxs5hzs5x3c8"; 16 16 }; 17 17 18 + nativeBuildInputs = [ cython ]; 18 19 propagatedBuildInputs = [ numpy ]; 19 20 20 - checkInputs = [ pytest ]; 21 - checkPhase = '' 22 - pytest 21 + checkInputs = [ pytestCheckHook ]; 22 + preCheck = '' 23 + pushd gsd/test 24 + ''; 25 + postCheck = '' 26 + popd 23 27 ''; 24 28 25 29 meta = with lib; {