lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python312Packages.pytest-fixture-config: 1.7.0 -> 1.7.1-unstable-2022-10-03

TomaSajt 0875b948 9f7053ff

+21 -8
+21 -8
pkgs/development/python-modules/pytest-fixture-config/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi 2 - , setuptools-git, pytest }: 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + setuptools, 6 + setuptools-git, 7 + pytest, 8 + }: 3 9 4 10 buildPythonPackage rec { 5 11 pname = "pytest-fixture-config"; 6 - version = "1.7.0"; 7 - format = "setuptools"; 12 + version = "1.7.1-unstable-2022-10-03"; 13 + pyproject = true; 8 14 9 - src = fetchPypi { 10 - inherit pname version; 11 - sha256 = "13i1qpz22w3x4dmw8vih5jdnbqfqvl7jiqs0dg764s0zf8bp98a1"; 15 + src = fetchFromGitHub { 16 + owner = "man-group"; 17 + repo = "pytest-plugins"; 18 + rev = "5f9b88a65a8c1e506885352bbd9b2a47900f5014"; 19 + hash = "sha256-huN3RzwtfVf4iMJ96VRP/ldOxTUlUMF1wJIdbcGXHn4="; 12 20 }; 13 21 14 - nativeBuildInputs = [ setuptools-git ]; 22 + sourceRoot = "${src.name}/pytest-fixture-config"; 23 + 24 + nativeBuildInputs = [ 25 + setuptools 26 + setuptools-git 27 + ]; 15 28 16 29 buildInputs = [ pytest ]; 17 30