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

21 lines
461 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "units";
version = "0.07";
src = fetchPypi {
inherit pname version;
sha256 = "43eb3e073e1b11289df7b1c3f184b5b917ccad178b717b03933298716f200e14";
};
meta = with lib; {
description = "Python support for quantities with units";
homepage = "https://bitbucket.org/adonohue/units/";
license = licenses.psfl;
maintainers = [ maintainers.costrouc ];
};
}