depot/third_party/nixpkgs/pkgs/development/python-modules/numericalunits/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

24 lines
496 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
}:
buildPythonPackage rec {
version = "1.25";
pname = "numericalunits";
src = fetchPypi {
inherit pname version;
sha256 = "c32a482adae818a1a8d6c799bf9fb153326461d490c0de9deab9c694a6537eec";
};
disabled = !isPy3k;
meta = with lib; {
homepage = "http://pypi.python.org/pypi/numericalunits";
description = "A package that lets you define quantities with unit";
license = licenses.mit;
maintainers = [ ];
};
}