nixpkgs/pkgs/development/python-modules/bidict/default.nix
Joshua Bronson ba4f6569d2 python3Packages.bidict: rm bundled pytest.ini
...instead of calling pytest with `-c /dev/null` to bypass it.

For some reason the latter suddenly started failing with a
PermissionError on Darwin after working fine for a while.

Fixes #299933.
2024-04-02 12:55:16 -04:00

55 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, hypothesis
, pytest-xdist
, pytestCheckHook
, typing-extensions
, pythonOlder
, wheel
}:
buildPythonPackage rec {
pname = "bidict";
version = "0.23.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "jab";
repo = "bidict";
rev = "refs/tags/v${version}";
hash = "sha256-WE0YaRT4a/byvU2pzcByuf1DfMlOpYA9i0PPrKXsS+M=";
};
build-system = [
setuptools
wheel
];
nativeCheckInputs = [
hypothesis
pytest-xdist
pytestCheckHook
typing-extensions
];
# Remove the bundled pytest.ini, which adds options to run additional integration
# tests that are overkill for our purposes.
preCheck = ''
rm pytest.ini
'';
pythonImportsCheck = [ "bidict" ];
meta = with lib; {
homepage = "https://bidict.readthedocs.io";
changelog = "https://bidict.readthedocs.io/changelog.html";
description = "The bidirectional mapping library for Python.";
license = licenses.mpl20;
maintainers = with maintainers; [ jab jakewaksbaum ];
};
}