Files
nixpkgs/pkgs/development/python-modules/numericalunits/default.nix
R. RyanTM c2b2bc48e0 python37Packages.numericalunits: 1.16 -> 1.23
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-numericalunits/versions
2019-06-02 12:31:31 -07:00

25 lines
514 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
version = "1.23";
pname = "numericalunits";
src = fetchPypi {
inherit pname version;
sha256 = "1q1jrzxx0k7j82c5q061hd10mp965ra8813vb09ji326fbxzn2gy";
};
# no tests
doCheck = false;
meta = with stdenv.lib; {
homepage = http://pypi.python.org/pypi/numericalunits;
description = "A package that lets you define quantities with unit";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}