3
0
Fork 0
forked from mirrors/nixpkgs

python39Packages.astropy-extension-helpers: fix version number

This commit is contained in:
Sandro Jäckel 2022-02-08 18:04:05 +01:00 committed by Jonathan Ringer
parent 5658eeea77
commit f32afc8776

View file

@ -3,6 +3,7 @@
, fetchPypi , fetchPypi
, findutils , findutils
, pytestCheckHook , pytestCheckHook
, setuptools-scm
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -15,6 +16,10 @@ buildPythonPackage rec {
sha256 = "10iqjzmya2h4sk765dlm1pbqypwlqyh8rw59a5m9i63d3klnz2mc"; sha256 = "10iqjzmya2h4sk765dlm1pbqypwlqyh8rw59a5m9i63d3klnz2mc";
}; };
nativeBuildInputs = [
setuptools-scm
];
patches = [ ./permissions.patch ]; patches = [ ./permissions.patch ];
checkInputs = [ findutils pytestCheckHook ]; checkInputs = [ findutils pytestCheckHook ];