forked from mirrors/nixpkgs
Merge pull request #167922 from smaret/astropy-extension-helpers-update
python3Packages.astropy-extension-helpers: 0.1 -> 1.0.0
This commit is contained in:
commit
515294b7a4
|
@ -3,17 +3,20 @@
|
|||
, fetchPypi
|
||||
, findutils
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, setuptools-scm
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "extension-helpers";
|
||||
version = "0.1";
|
||||
version = "1.0.0";
|
||||
format = "pyproject";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "10iqjzmya2h4sk765dlm1pbqypwlqyh8rw59a5m9i63d3klnz2mc";
|
||||
sha256 = "ca1bfac67c79cf4a7a0c09286ce2a24eec31bf17715818d0726318dd0e5050e6";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
|
@ -22,7 +25,10 @@ buildPythonPackage rec {
|
|||
|
||||
patches = [ ./permissions.patch ];
|
||||
|
||||
checkInputs = [ findutils pytestCheckHook ];
|
||||
checkInputs = [
|
||||
findutils
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
# avoid import mismatch errors, as conftest.py is copied to build dir
|
||||
pytestFlagsArray = [
|
||||
|
@ -37,6 +43,6 @@ buildPythonPackage rec {
|
|||
description = "Utilities for building and installing packages in the Astropy ecosystem";
|
||||
homepage = "https://github.com/astropy/extension-helpers";
|
||||
license = licenses.bsd3;
|
||||
maintainers = [ maintainers.rmcgibbo ];
|
||||
maintainers = with maintainers; [ rmcgibbo ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue