summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2025-08-09 06:27:19 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2025-08-09 19:05:22 +0200
commitdf72ed6e81c96008627b96f7dcbfbe008c9265c2 (patch)
tree963465293d743d2119ad0ee9ca3bf36746ea90b0
parentpython3Packages.aiorpcx: pin pytest-asyncio 0.x (diff)
downloadnixpkgs-df72ed6e81c96008627b96f7dcbfbe008c9265c2.tar.gz
python3Packages.pytest-factoryboy: 2.6.1 -> 2.8.1
https://github.com/pytest-dev/pytest-factoryboy/compare/2.6.1...2.8.1
-rw-r--r--pkgs/development/python-modules/pytest-factoryboy/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/pytest-factoryboy/default.nix b/pkgs/development/python-modules/pytest-factoryboy/default.nix
index b7e394233346..5f932e44d25f 100644
--- a/pkgs/development/python-modules/pytest-factoryboy/default.nix
+++ b/pkgs/development/python-modules/pytest-factoryboy/default.nix
@@ -20,21 +20,21 @@
buildPythonPackage rec {
pname = "pytest-factoryboy";
- version = "2.6.1";
- format = "pyproject";
+ version = "2.8.1";
+ pyproject = true;
src = fetchFromGitHub {
owner = "pytest-dev";
repo = "pytest-factoryboy";
rev = version;
- sha256 = "sha256-GYqYwtbmMWVqImVPPBbZNRJJGcbksUPsIbi6QuPRMco=";
+ sha256 = "sha256-9dMsUujMCk89Ze4H9VJRS+ihjk0PAxKb8xqlw0+ROEI=";
};
- nativeBuildInputs = [ poetry-core ];
+ build-system = [ poetry-core ];
buildInputs = [ pytest ];
- propagatedBuildInputs = [
+ dependencies = [
factory-boy
inflection
typing-extensions