Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / numericalunits / default.nix
blobcc04bea1e3a14825cef2581aa333cde00b1545a5
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPy3k
5 }:
7 buildPythonPackage rec {
8   version = "1.25";
9   format = "setuptools";
10   pname = "numericalunits";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "c32a482adae818a1a8d6c799bf9fb153326461d490c0de9deab9c694a6537eec";
15   };
17   disabled = !isPy3k;
19   meta = with lib; {
20     homepage = "http://pypi.python.org/pypi/numericalunits";
21     description = "A package that lets you define quantities with unit";
22     license = licenses.mit;
23     maintainers = [ ];
24   };