Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / units / default.nix
blob8e9742d2f6a8f529eea69a8c149b86906946df1d
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "units";
8   version = "0.07";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "43eb3e073e1b11289df7b1c3f184b5b917ccad178b717b03933298716f200e14";
13   };
15   meta = with lib; {
16     description = "Python support for quantities with units";
17     homepage = "https://bitbucket.org/adonohue/units/";
18     license = licenses.psfl;
19     maintainers = [ ];
20   };