mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
pythonPackages.pyregion: add checkPhase
This commit is contained in:
parent
ffd71594f6
commit
93a6bba94e
1 changed files with 28 additions and 2 deletions
|
@ -1,18 +1,20 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, fetchpatch
|
||||
, pyparsing
|
||||
, numpy
|
||||
, cython
|
||||
, astropy
|
||||
, astropy-helpers
|
||||
, pytest
|
||||
, pytest-astropy
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyregion";
|
||||
version = "2.0";
|
||||
|
||||
doCheck = false; # tests require pytest-astropy
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "a8ac5f764b53ec332f6bc43f6f2193ca13e8b7d5a3fb2e20ced6b2ea42a9d094";
|
||||
|
@ -25,6 +27,30 @@ buildPythonPackage rec {
|
|||
astropy
|
||||
];
|
||||
|
||||
# Upstream patch needed for the test to pass
|
||||
patches = [
|
||||
(fetchpatch {
|
||||
name = "conftest-astropy-3-fix.patch";
|
||||
url = "https://github.com/astropy/pyregion/pull/136.patch";
|
||||
sha256 = "13yxjxiqnhjy9gh24hvv6pnwx7qic2mcx3ccr1igjrc3f881d59m";
|
||||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ astropy-helpers ];
|
||||
|
||||
checkInputs = [ pytest pytest-astropy ];
|
||||
|
||||
# Disable automatic update of the astropy-helper module
|
||||
postPatch = ''
|
||||
substituteInPlace setup.cfg --replace "auto_use = True" "auto_use = False"
|
||||
'';
|
||||
|
||||
# Tests must be run in the build directory
|
||||
checkPhase = ''
|
||||
cd build/lib.*
|
||||
pytest
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python parser for ds9 region files";
|
||||
homepage = https://github.com/astropy/pyregion;
|
||||
|
|
Loading…
Reference in a new issue