python311Packages.iodata: 1.0.0a2 -> 1.0.0a4

Diff: https://github.com/theochem/iodata/compare/refs/tags/v1.0.0a2...v1.0.0a4
This commit is contained in:
natsukium 2024-07-05 13:41:21 +09:00
parent 4b42a2b912
commit 3941d8213e
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53

View File

@ -2,30 +2,31 @@
buildPythonPackage,
lib,
fetchFromGitHub,
setuptools,
setuptools-scm,
numpy,
scipy,
attrs,
cython,
nose,
}:
buildPythonPackage rec {
pname = "iodata";
version = "1.0.0a2";
format = "setuptools";
version = "1.0.0a4";
pyproject = true;
src = fetchFromGitHub {
owner = "theochem";
repo = pname;
rev = version;
hash = "sha256-GFTCYE19Re7WLhV8eU+0i8OMp/Tsms/Xj9DRTcgjcz4=";
rev = "refs/tags/v${version}";
hash = "sha256-ld6V+/8lg4Du6+mHU5XuXXyMpWwyepXurerScg/bf2Q=";
};
nativeBuildInputs = [
cython
nose
build-system = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
dependencies = [
numpy
scipy
attrs