about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/iodata/default.nix
blob: 64021cc051b10ccfa2da15c14eb4278521f2576e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ buildPythonPackage, lib, fetchFromGitHub, numpy, scipy, attrs, cython, nose }:

buildPythonPackage rec {
  pname = "iodata";
  version = "1.0.0a2";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "theochem";
    repo = pname;
    rev = version;
    hash = "sha256-GFTCYE19Re7WLhV8eU+0i8OMp/Tsms/Xj9DRTcgjcz4=";
  };

  nativeBuildInputs = [ cython nose ];
  propagatedBuildInputs = [ numpy scipy attrs ];

  pythonImportsCheck = [ "iodata" ];
  doCheck = false; # Requires roberto or nose and a lenghtly setup to find the cython modules

  meta = with lib; {
    description = "Python library for reading, writing, and converting computational chemistry file formats and generating input files";
    homepage = "https://github.com/theochem/iodata";
    license = licenses.lgpl3Only;
    maintainers = [ maintainers.sheepforce ];
  };
}