python3Packages.pytest-astropy-header: unbreak

This commit is contained in:
Robert T. McGibbon 2020-12-28 15:10:19 -05:00
parent 0bba94bb4c
commit d7ca8099bf

View File

@ -1,21 +1,36 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, fetchpatch
, pytest , pytest
, pytestcov , pytestcov
, pytestCheckHook , pytestCheckHook
, numpy , numpy
, astropy , astropy
, scipy
, h5py
, scikitimage
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pytest-astropy-header"; pname = "pytest-astropy-header";
version = "0.1.2"; version = "0.1.2";
format = "pyproject";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "1y87agr324p6x5gvhziymxjlw54pyn4gqnd49papbl941djpkp5g"; sha256 = "1y87agr324p6x5gvhziymxjlw54pyn4gqnd49papbl941djpkp5g";
}; };
patches = [ (fetchpatch {
url = "https://github.com/astropy/pytest-astropy-header/pull/16.patch";
sha256 = "11ln63zq0kgsdx1jw3prlzpcdbxmc99p9cwr18s0x6apy0k6df31";
})
(fetchpatch {
url = "https://github.com/astropy/pytest-astropy-header/pull/29.patch";
sha256 = "18l434c926r5z1iq3b6lpnp0lrssszars9y1y9hs6216r60jgjpl";
})
];
propagatedBuildInputs = [ propagatedBuildInputs = [
pytest pytest
@ -25,6 +40,9 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
pytestcov pytestcov
numpy numpy
scipy
h5py
scikitimage
astropy astropy
]; ];