Skip to content

Commit

Permalink
python310Packages.castepxbin: 0.2.0 -> 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dotlambda committed Sep 29, 2023
1 parent 623644e commit c343b15
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions pkgs/development/python-modules/castepxbin/default.nix
Original file line number Diff line number Diff line change
@@ -1,27 +1,35 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, flit-core
, numpy
, scipy
, pymatgen
, pytestCheckHook
}:

buildPythonPackage rec {
pname = "castepxbin";
version = "0.2.0";
version = "0.3.0";

disabled = pythonOlder "3.7";

format = "pyproject";

src = fetchFromGitHub {
owner = "zhubonan";
repo = "castepxbin";
rev = "v${version}";
sha256 = "0bqicpdyisbcz8argy4ppm59zzkcn9lcs4y1mh2f31f75x732na3";
hash = "sha256-6kumVnm4PLRxuKO6Uz0iHzfYuu21hFC7EPRsc3S1kxE=";
};

nativeBuildInputs = [
flit-core
];

propagatedBuildInputs = [
numpy
scipy
pymatgen
];

nativeCheckInputs = [
Expand Down

0 comments on commit c343b15

Please sign in to comment.