1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "units";
8 version = "0.07";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "43eb3e073e1b11289df7b1c3f184b5b917ccad178b717b03933298716f200e14";
13 };
14
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 };
21}