summary refs log tree commit diff
path: root/pkgs/development/python-modules/numericalunits/default.nix
blob: 1212bf0039c9039c3eb07f0cc6e2a051ad313e50 (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
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  version = "1.16";
  pname = "numericalunits";

  src = fetchPypi {
    inherit pname version;
    sha256 = "71ae8e236c7a223bccefffb670dca68be476dd63b7b9009641fc64099455da25";
  };

  # no tests
  doCheck = false;

  meta = with stdenv.lib; {
    homepage = http://pypi.python.org/pypi/numericalunits;
    description = "A package that lets you define quantities with unit";
    license = licenses.mit;
    maintainers = [ maintainers.costrouc ];
  };
}