depot/third_party/nixpkgs/pkgs/development/python-modules/castepxbin/default.nix
Default email 2c76a4cb41 Project import generated by Copybara.
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
2023-11-16 04:20:00 +00:00

45 lines
803 B
Nix

{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, flit-core
, numpy
, scipy
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "castepxbin";
version = "0.3.0";
disabled = pythonOlder "3.7";
format = "pyproject";
src = fetchFromGitHub {
owner = "zhubonan";
repo = "castepxbin";
rev = "refs/tags/v${version}";
hash = "sha256-6kumVnm4PLRxuKO6Uz0iHzfYuu21hFC7EPRsc3S1kxE=";
};
nativeBuildInputs = [
flit-core
];
propagatedBuildInputs = [
numpy
scipy
];
nativeCheckInputs = [
pytestCheckHook
];
meta = with lib; {
description = "A collection of readers for CASTEP binary outputs";
homepage = "https://github.com/zhubonan/castepxbin";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}