aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/extension-helpers/default.nix
blob: 0c23a69a89cd7ab733a8f12ecbe543e66bbcf0c1 (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
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, pytestCheckHook
, setuptools_scm
}:

buildPythonPackage rec {
  pname = "extension-helpers";
  version = "0.1";
  disabled = isPy27;

  src = fetchPypi {
    inherit pname version;
    sha256 = "10iqjzmya2h4sk765dlm1pbqypwlqyh8rw59a5m9i63d3klnz2mc";
  };

  nativeBuildInputs = [
    setuptools_scm
  ];

  propagatedBuildInputs = [
    pytestCheckHook
  ];

  # avoid importing local module
  preCheck = ''
    cd extension_helpers
  '';

  # assumes setup.py is in pwd
  disabledTests = [ "compiler_module" ];

  meta = with lib; {
    description = "Helpers to assist with building packages with compiled C/Cython extensions";
    homepage = "https://github.com/astropy/extension-helpers";
    license = licenses.bsd3;
    maintainers = [ ];
  };
}