pythonPackages.pint: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov 2018-10-17 00:24:31 -04:00 committed by Frederik Rietdijk
parent 66faaa3b74
commit e900eb2a61

View file

@ -0,0 +1,21 @@
{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "pint";
version = "0.7.2";
src = fetchPypi {
inherit pname version;
sha256 = "1bbp5s34gcb9il2wyz4spznshahwbjvwi5bhjm7bnxk358spvf9q";
};
meta = with stdenv.lib; {
description = "Physical quantities module";
license = licenses.bsd3;
homepage = "https://github.com/hgrecco/pint/";
};
}