summary refs log tree commit diff
path: root/pkgs/development/python-modules/fdint/default.nix
blob: 413416c99a25297973d3f9745b7fdcdc2d87b836 (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
28
29
30
31
32
33
34
35
36
{ lib
, buildPythonPackage
, fetchPypi
, cython
, numpy
, python
, isPy3k
}:

buildPythonPackage rec {
  version = "2.0.2";
  pname = "fdint";
  disabled = isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "30db139684d362652670e2cd3206b5dd7b3b93b86c3aff37f4b4fd4a3f98aead";
  };

  buildInputs = [ cython ];
  propagatedBuildInputs = [ numpy ];

  # tests not included with pypi release
  doCheck = false;

  checkPhase = ''
    ${python.interpreter} -m fdint.tests
  '';

  meta = with lib; {
    homepage = "https://github.com/scott-maddox/fdint";
    description = "A free, open-source python package for quickly and precisely approximating Fermi-Dirac integrals";
    license = licenses.mit;
    maintainers = [ maintainers.costrouc ];
  };
}