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

48 lines
845 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, isPy27
2020-04-03 18:20:41 +02:00
, pythonOlder
, funcsigs
2020-04-03 18:20:41 +02:00
, setuptools_scm
# Check Inputs
, pytestCheckHook
, numpy
, matplotlib
, uncertainties
}:
buildPythonPackage rec {
pname = "pint";
2020-04-03 18:20:41 +02:00
version = "0.11";
src = fetchPypi {
inherit version;
pname = "Pint";
2020-04-03 18:20:41 +02:00
sha256 = "0kfgnmcs6z9ndhzvwg2xzhpwxgyyagdsdz5dns1jy40fa1q113rh";
};
2020-04-03 18:20:41 +02:00
disabled = pythonOlder "3.6";
propagatedBuildInputs = [
setuptools_scm
] ++ lib.optional isPy27 funcsigs;
# Test suite explicitly requires pytest
checkInputs = [
pytestCheckHook
numpy
matplotlib
uncertainties
];
dontUseSetuptoolsCheck = true;
meta = with lib; {
description = "Physical quantities module";
license = licenses.bsd3;
homepage = "https://github.com/hgrecco/pint/";
maintainers = [ maintainers.costrouc ];
};
}