Files
nixpkgs/pkgs/development/python-modules/fixtures/default.nix
Martin Weinelt 4260039683 python3Packages.fixtures: 4.2.2 -> 4.2.4.post1
https://github.com/testing-cabal/fixtures/blob/4.2.4.post1/NEWS

This commit was automatically generated using update-python-libraries.
2025-04-03 23:12:20 +02:00

43 lines
799 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
hatch-vcs,
testtools,
mock,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "fixtures";
version = "4.2.4.post1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-A0xL0d6qYKW/y2CM5T2Z6Dkr9HyRplNgWuvdagUkjy4=";
};
build-system = [
hatchling
hatch-vcs
];
optional-dependencies = {
streams = [ testtools ];
};
nativeCheckInputs = [
mock
pytestCheckHook
] ++ optional-dependencies.streams;
meta = {
description = "Reusable state for writing clean tests and more";
homepage = "https://github.com/testing-cabal/fixtures";
changelog = "https://github.com/testing-cabal/fixtures/blob/${version}/NEWS";
license = lib.licenses.asl20;
};
}