Unverified Commit 7436f147 authored by markuskowa's avatar markuskowa Committed by GitHub
Browse files

Merge pull request #290649 from sheepforce/iodata

python3Packages.iodata: 0.1.7 -> 1.0.0a2
parents a9134fc1 6a620970
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -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; {