nixpkgs/pkgs/development/python-modules/pint/default.nix
2019-02-17 14:40:32 +01:00

22 lines
407 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "pint";
version = "0.9";
src = fetchPypi {
inherit pname version;
sha256 = "32d8a9a9d63f4f81194c0014b3b742679dce81a26d45127d9810a68a561fe4e2";
};
meta = with stdenv.lib; {
description = "Physical quantities module";
license = licenses.bsd3;
homepage = "https://github.com/hgrecco/pint/";
};
}