summary refs log tree commit diff
path: root/pkgs/development/python-modules/quantities/default.nix
blob: 83cce4ad4bab534105ace42a92688b35ffdf0b86 (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
{ lib
, buildPythonPackage
, fetchPypi
, numpy
, python
}:

buildPythonPackage rec {
  pname = "quantities";
  version = "0.12.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "582f3c7aeba897846761e966615e01202a5e5d06add304492931b05085d19883";
  };

  propagatedBuildInputs = [ numpy ];

  checkPhase = ''
    ${python.interpreter} setup.py test -V 1
  '';

  meta = {
    description = "Quantities is designed to handle arithmetic and";
    homepage = https://python-quantities.readthedocs.io/;
    license = lib.licenses.bsd2;
  };
}