lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #258095 from dotlambda/castepxbin-0.3.0

python310Packages.castepxbin: 0.2.0 -> 0.3.0

authored by

Robert Schütz and committed by
GitHub
de290361 2ea28dc7

+12 -4
+12 -4
pkgs/development/python-modules/castepxbin/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 + , pythonOlder 3 4 , fetchFromGitHub 5 + , flit-core 4 6 , numpy 5 7 , scipy 6 - , pymatgen 7 8 , pytestCheckHook 8 9 }: 9 10 10 11 buildPythonPackage rec { 11 12 pname = "castepxbin"; 12 - version = "0.2.0"; 13 + version = "0.3.0"; 14 + 15 + disabled = pythonOlder "3.7"; 16 + 17 + format = "pyproject"; 13 18 14 19 src = fetchFromGitHub { 15 20 owner = "zhubonan"; 16 21 repo = "castepxbin"; 17 22 rev = "v${version}"; 18 - sha256 = "0bqicpdyisbcz8argy4ppm59zzkcn9lcs4y1mh2f31f75x732na3"; 23 + hash = "sha256-6kumVnm4PLRxuKO6Uz0iHzfYuu21hFC7EPRsc3S1kxE="; 19 24 }; 20 25 26 + nativeBuildInputs = [ 27 + flit-core 28 + ]; 29 + 21 30 propagatedBuildInputs = [ 22 31 numpy 23 32 scipy 24 - pymatgen 25 33 ]; 26 34 27 35 nativeCheckInputs = [