Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / islpy / default.nix
blobca84beae2eeffe39ae56a74aacb36200c040625c
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isl
5 , pybind11
6 , pytestCheckHook
7 , pythonOlder
8 , six
9 }:
11 buildPythonPackage rec {
12   pname = "islpy";
13   version = "2023.2.5";
14   format = "setuptools";
16   disabled = pythonOlder "3.6";
18   src = fetchPypi {
19     inherit pname version;
20     sha256 = "sha256-3XQ5i682k4q7fCqdmCjMGi5UnGyASFzsiwaymr+q0Y8=";
21   };
23   postConfigure = ''
24     substituteInPlace setup.py \
25       --replace "\"pytest>=2\"," ""
26   '';
28   buildInputs = [ isl pybind11 ];
29   propagatedBuildInputs = [ six ];
31   preCheck = "mv islpy islpy.hidden";
32   nativeCheckInputs = [ pytestCheckHook ];
33   pythonImportsCheck = [ "islpy" ];
35   meta = with lib; {
36     description = "Python wrapper around isl, an integer set library";
37     homepage = "https://github.com/inducer/islpy";
38     license = licenses.mit;
39     maintainers = [ ];
40   };