mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 22:23:15 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
55 lines
967 B
Nix
55 lines
967 B
Nix
{ buildPythonPackage
|
|
# pkgs dependencies
|
|
, check
|
|
, cppunit
|
|
, pkg-config
|
|
, subunit
|
|
, pythonOlder
|
|
|
|
# python dependencies
|
|
, fixtures
|
|
, hypothesis
|
|
, pytestCheckHook
|
|
, setuptools
|
|
, testscenarios
|
|
, testtools
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
inherit (subunit) name src meta;
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "version=VERSION" 'version="${subunit.version}"'
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
setuptools
|
|
];
|
|
|
|
buildInputs = [ check cppunit ];
|
|
propagatedBuildInputs = [ testtools ];
|
|
|
|
nativeCheckInputs = [
|
|
testscenarios
|
|
hypothesis
|
|
fixtures
|
|
pytestCheckHook
|
|
];
|
|
|
|
pytestFlagsArray = [
|
|
"python/subunit"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# these tests require testtools and don't work with pytest
|
|
"python/subunit/tests/test_output_filter.py"
|
|
"python/subunit/tests/test_test_protocol.py"
|
|
"python/subunit/tests/test_test_protocol2.py"
|
|
];
|
|
}
|