aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/retworkx/default.nix
blob: 531edab274674e3202bb1afe09151694fa372cb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{ lib
, buildPythonPackage
, pythonOlder
, pythonAtLeast
, isPy37
, isPy38
, fetchFromGitHub
, fetchPypi
  # Check inputs
, pytestCheckHook
}:

let
  rx-version = "0.3.3";
  wheel-args = if isPy37 then
      { python = "cp37"; sha256 = "1gbz7sh9i4h41xs9c40lixfdigmvfykkgxgzwsrs8v0smx20dczy"; }
    else if isPy38 then
      { python = "cp38"; sha256 = "09xxgp4ac4q6mfkj6lsqqfrzz1cb02vxy7wlv0bq3z2hd0jcanxk"; }
    else throw "python version & hash not included. Override attribute `wheel-args` with version & hash at https://pypi.org/project/retworkx";

  github-source = fetchFromGitHub {
    owner = "Qiskit";
    repo = "retworkx";
    rev = rx-version;
    sha256 = "160w5vkzrl5rzcrdwhjq820i5lmc527m6hg0kxx0k6n2bz9qn26g";
  };
in
buildPythonPackage rec {
  pname = "retworkx";
  version = rx-version;
  format = "wheel";

  disabled = pythonOlder "3.5" || pythonAtLeast "3.9"; # compiled versions only included for 3.5 <= py <= 3.8

  src = fetchPypi {
    inherit pname version format;
    inherit (wheel-args) python sha256;
    abi = if pythonOlder "3.8" then "${wheel-args.python}m" else wheel-args.python;
    platform = "manylinux2010_x86_64"; # i686, aarch64, and ppc64 also available, restricting to x86 for simplicity
  };

  pythonImportsCheck = [ "retworkx" ];

  checkInputs = [ pytestCheckHook ];
  preCheck = ''
    pushd $(mktemp -d)
    cp -r ${github-source}/$sourceRoot/tests .
  '';
  postCheck = "popd";

  meta = with lib; {
    description = "A python graph library implemented in Rust.";
    homepage = "https://retworkx.readthedocs.io/en/latest/index.html";
    downloadPage = "https://github.com/Qiskit/retworkx/releases";
    license = licenses.asl20;
    maintainers = with maintainers; [ drewrisinger ];
    platforms = platforms.x86_64;
  };
}