about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/quantities/default.nix
blob: 233eb8a44b3216f953c883f8fea3f53e080a3560 (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.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "67546963cb2a519b1a4aa43d132ef754360268e5d551b43dd1716903d99812f0";
  };

  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;
  };
}