1{ lib
2, buildPythonPackage
3, fetchPypi
4, pytestCheckHook
5}:
6
7buildPythonPackage rec {
8 pname = "extension-helpers";
9 version = "0.1";
10 format = "pyproject";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "10iqjzmya2h4sk765dlm1pbqypwlqyh8rw59a5m9i63d3klnz2mc";
15 };
16
17 patches = [ ./permissions.patch ];
18
19 checkInputs = [ pytestCheckHook ];
20
21 pythonImportsCheck = [
22 "extension_helpers"
23 ];
24
25 meta = with lib; {
26 description = "Utilities for building and installing packages in the Astropy ecosystem";
27 homepage = "https://github.com/astropy/extension-helpers";
28 license = licenses.bsd3;
29 maintainers = [ maintainers.rmcgibbo ];
30 };
31}