1{ stdenv
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 version = "1.23";
8 pname = "numericalunits";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "1q1jrzxx0k7j82c5q061hd10mp965ra8813vb09ji326fbxzn2gy";
13 };
14
15 # no tests
16 doCheck = false;
17
18 meta = with stdenv.lib; {
19 homepage = http://pypi.python.org/pypi/numericalunits;
20 description = "A package that lets you define quantities with unit";
21 license = licenses.mit;
22 maintainers = [ maintainers.costrouc ];
23 };
24}