nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3Packages.pytest-factoryboy: 2.6.1 -> 2.8.1

https://github.com/pytest-dev/pytest-factoryboy/compare/2.6.1...2.8.1

+5 -5
+5 -5
pkgs/development/python-modules/pytest-factoryboy/default.nix
··· 20 20 21 21 buildPythonPackage rec { 22 22 pname = "pytest-factoryboy"; 23 - version = "2.6.1"; 24 - format = "pyproject"; 23 + version = "2.8.1"; 24 + pyproject = true; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "pytest-dev"; 28 28 repo = "pytest-factoryboy"; 29 29 rev = version; 30 - sha256 = "sha256-GYqYwtbmMWVqImVPPBbZNRJJGcbksUPsIbi6QuPRMco="; 30 + sha256 = "sha256-9dMsUujMCk89Ze4H9VJRS+ihjk0PAxKb8xqlw0+ROEI="; 31 31 }; 32 32 33 - nativeBuildInputs = [ poetry-core ]; 33 + build-system = [ poetry-core ]; 34 34 35 35 buildInputs = [ pytest ]; 36 36 37 - propagatedBuildInputs = [ 37 + dependencies = [ 38 38 factory-boy 39 39 inflection 40 40 typing-extensions