depot/third_party/nixpkgs/pkgs/development/python-modules/numericalunits/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

24 lines
515 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
}:
buildPythonPackage rec {
version = "1.24";
pname = "numericalunits";
src = fetchPypi {
inherit pname version;
sha256 = "0wn7kqp0rxqr6gnqhdn8pc0wy359krzan0kbika6hfvb0c1rw1hs";
};
disabled = !isPy3k;
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 ];
};
}