nixpkgs/pkgs/development/python-modules/pint/default.nix

22 lines
409 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "pint";
2018-11-04 10:35:09 +00:00
version = "0.8.1";
src = fetchPypi {
inherit pname version;
2018-11-04 10:35:09 +00:00
sha256 = "afcf31443a478c32bbac4b00337ee9026a13d0e2ac83d30c79151462513bb0d4";
};
meta = with stdenv.lib; {
description = "Physical quantities module";
license = licenses.bsd3;
homepage = "https://github.com/hgrecco/pint/";
};
}