depot/third_party/nixpkgs/pkgs/development/python-modules/subunit/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

59 lines
994 B
Nix

{ buildPythonPackage
# pkgs dependencies
, check
, cppunit
, pkg-config
, subunit
, pythonOlder
# python dependencies
, extras
, 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 = [
extras
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"
];
}