Merge pull request #290649 from sheepforce/iodata

python3Packages.iodata: 0.1.7 -> 1.0.0a2
This commit is contained in:
markuskowa
2024-02-23 10:33:26 +01:00
committed by GitHub
@@ -2,22 +2,20 @@
buildPythonPackage rec {
pname = "iodata";
version = "0.1.7";
version = "1.0.0a2";
format = "setuptools";
src = fetchFromGitHub {
owner = "theochem";
repo = pname;
rev = version;
hash = "sha256-Qn2xWFxdS12K92DhdHVzYrBjPRV+vYo7Cs27vkeCaxM=";
hash = "sha256-GFTCYE19Re7WLhV8eU+0i8OMp/Tsms/Xj9DRTcgjcz4=";
};
leaveDotGit = true;
nativeBuildInputs = [ cython nose ];
propagatedBuildInputs = [ numpy scipy attrs ];
pythonImportsCheck = [ "iodata" "iodata.overlap_accel" ];
pythonImportsCheck = [ "iodata" ];
doCheck = false; # Requires roberto or nose and a lenghtly setup to find the cython modules
meta = with lib; {