1 { buildPythonPackage, lib, fetchFromGitHub, numpy, scipy, attrs, cython, nose }:
3 buildPythonPackage rec {
7 src = fetchFromGitHub {
11 hash = "sha256-Qn2xWFxdS12K92DhdHVzYrBjPRV+vYo7Cs27vkeCaxM=";
16 nativeBuildInputs = [ cython nose ];
17 propagatedBuildInputs = [ numpy scipy attrs ];
19 pythonImportsCheck = [ "iodata" "iodata.overlap_accel" ];
20 doCheck = false; # Requires roberto or nose and a lenghtly setup to find the cython modules
23 description = "Python library for reading, writing, and converting computational chemistry file formats and generating input files";
24 homepage = "https://github.com/theochem/iodata";
25 license = licenses.lgpl3Only;
26 maintainers = [ maintainers.sheepforce ];