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

41 lines
841 B
Nix
Raw Normal View History

2019-04-15 21:27:00 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, isl
, pybind11
, pytestCheckHook
, pythonOlder
2019-04-15 21:27:00 +00:00
, cffi
, six
}:
buildPythonPackage rec {
pname = "islpy";
version = "2020.2.2";
disabled = pythonOlder "3.6";
2019-04-15 21:27:00 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "7eb7dfa41d6a67d9ee4ea4bb9f08bdbcbee42b364502136b7882cfd80ff427e0";
2019-04-15 21:27:00 +00:00
};
postConfigure = ''
substituteInPlace setup.py \
--replace "\"pytest>=2\"," ""
'';
buildInputs = [ isl pybind11 ];
propagatedBuildInputs = [ six ];
2019-04-15 21:27:00 +00:00
preCheck = "mv islpy islpy.hidden";
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "islpy" ];
2019-04-15 21:27:00 +00:00
meta = with lib; {
description = "Python wrapper around isl, an integer set library";
homepage = "https://github.com/inducer/islpy";
2019-04-15 21:27:00 +00:00
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}