python312Packages.plone-testing: 9.0.1 -> 9.0.3 (#369863)

authored by OTABI Tomoya and committed by GitHub 298dd3f6 eb658263

+17 -9
+17 -9
pkgs/development/python-modules/plone-testing/default.nix
··· 1 { 2 lib, 3 buildPythonPackage, 4 - fetchPypi, 5 - six, 6 zope-testing, 7 setuptools, 8 }: 9 10 buildPythonPackage rec { 11 - pname = "plone.testing"; 12 - version = "9.0.1"; 13 14 - src = fetchPypi { 15 - inherit pname version; 16 - hash = "sha256-xdzm4LG/W5ziYXaXbCOfQbZYZvaUUih3lWhkLzWqeUc="; 17 }; 18 19 - propagatedBuildInputs = [ 20 - six 21 setuptools 22 zope-testing 23 ]; 24 25 # Huge amount of testing dependencies (including Zope2) 26 doCheck = false; 27 28 meta = { 29 description = "Testing infrastructure for Zope and Plone projects"; 30 homepage = "https://github.com/plone/plone.testing"; 31 license = lib.licenses.bsd3; 32 }; 33 }
··· 1 { 2 lib, 3 buildPythonPackage, 4 + fetchFromGitHub, 5 zope-testing, 6 setuptools, 7 }: 8 9 buildPythonPackage rec { 10 + pname = "plone-testing"; 11 + version = "9.0.3"; 12 + pyproject = true; 13 14 + src = fetchFromGitHub { 15 + owner = "plone"; 16 + repo = "plone.testing"; 17 + tag = version; 18 + hash = "sha256-EjKKwLUBhzjtk3stHkdUDsteXQGJcrwdu9EEA4FFK1w="; 19 }; 20 21 + build-system = [ setuptools ]; 22 + 23 + dependencies = [ 24 setuptools 25 zope-testing 26 ]; 27 + 28 + pythonImportsCheck = [ "plone.testing" ]; 29 30 # Huge amount of testing dependencies (including Zope2) 31 doCheck = false; 32 33 + pythonNamespaces = [ "plone" ]; 34 + 35 meta = { 36 description = "Testing infrastructure for Zope and Plone projects"; 37 homepage = "https://github.com/plone/plone.testing"; 38 + changelog = "https://github.com/plone/plone.testing/blob/${src.tag}/CHANGES.rst"; 39 license = lib.licenses.bsd3; 40 }; 41 }