nixpkgs/pkgs/development/python-modules/python-constraint/default.nix
Martin Weinelt 2685cef28f python3Packages.python-constraint: 2.4.0 -> 2.5.0
This commit was automatically generated using update-python-libraries.
2026-02-01 17:20:08 +01:00

51 lines
952 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
poetry-core,
cython,
# Check inputs
pytestCheckHook,
pytest-cov-stub,
tomli,
pep440,
}:
buildPythonPackage rec {
pname = "python-constraint";
version = "2.5.0";
pyproject = true;
src = fetchFromGitHub {
owner = "python-constraint";
repo = "python-constraint";
tag = version;
sha256 = "sha256-VTecK82VSDoUOkPnuC+PnQYPjPBsaPeWCqm2st6Wwvg=";
};
build-system = [
setuptools
poetry-core
cython
];
nativeCheckInputs = [
pytestCheckHook
pytest-cov-stub
tomli
pep440
];
disabledTestPaths = [
"tests/test_util_benchmark.py"
];
meta = {
description = "Constraint Solving Problem resolver for Python";
homepage = "https://labix.org/doc/constraint/";
downloadPage = "https://github.com/python-constraint/python-constraint/releases";
license = lib.licenses.bsd2;
maintainers = [ ];
};
}