python3Packages.castepxbin: init at 0.1.0

authored by Robert Schütz and committed by Jonathan Ringer e2cdb2fc 726af289

+39
+37
pkgs/development/python-modules/castepxbin/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , numpy 5 + , scipy 6 + , pymatgen 7 + , pytestCheckHook 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "castepxbin"; 12 + version = "0.1.0"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "zhubonan"; 16 + repo = "castepxbin"; 17 + rev = "v${version}"; 18 + sha256 = "16wnd1mwhl204d1s3har2fhyhyjg86sypg00bj812dxk8zixxszf"; 19 + }; 20 + 21 + propagatedBuildInputs = [ 22 + numpy 23 + scipy 24 + pymatgen 25 + ]; 26 + 27 + checkInputs = [ 28 + pytestCheckHook 29 + ]; 30 + 31 + meta = with lib; { 32 + description = "A collection of readers for CASTEP binary outputs"; 33 + homepage = "https://github.com/zhubonan/castepxbin"; 34 + license = licenses.mit; 35 + maintainers = with maintainers; [ dotlambda ]; 36 + }; 37 + }
+2
pkgs/top-level/python-packages.nix
··· 1239 1240 cassandra-driver = callPackage ../development/python-modules/cassandra-driver { }; 1241 1242 casttube = callPackage ../development/python-modules/casttube { }; 1243 1244 catalogue = callPackage ../development/python-modules/catalogue { };
··· 1239 1240 cassandra-driver = callPackage ../development/python-modules/cassandra-driver { }; 1241 1242 + castepxbin = callPackage ../development/python-modules/castepxbin { }; 1243 + 1244 casttube = callPackage ../development/python-modules/casttube { }; 1245 1246 catalogue = callPackage ../development/python-modules/catalogue { };