Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / astropy-extension-helpers / default.nix
blobbd9dca338fcd34e4207b1808cb4833353bad3fb0
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "extension-helpers";
9   version = "0.1";
10   format = "pyproject";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "10iqjzmya2h4sk765dlm1pbqypwlqyh8rw59a5m9i63d3klnz2mc";
15   };
17   patches = [ ./permissions.patch ];
19   checkInputs = [ pytestCheckHook ];
21   pythonImportsCheck = [
22     "extension_helpers"
23   ];
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   };