1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 hatchling, 6 pytest-cov-stub, 7 pytestCheckHook, 8}: 9 10buildPythonPackage rec { 11 pname = "feedgenerator"; 12 version = "2.2.1"; 13 pyproject = true; 14 15 src = fetchPypi { 16 inherit pname version; 17 hash = "sha256-DqqVXx8Ly1uHrBla90Dwb/n/9KQO0wuKfGu+uyZNTdE="; 18 }; 19 20 build-system = [ hatchling ]; 21 22 nativeCheckInputs = [ 23 pytest-cov-stub 24 pytestCheckHook 25 ]; 26 27 pythonImportsCheck = [ "feedgenerator" ]; 28 29 meta = with lib; { 30 description = "Standalone version of Django's feedgenerator module"; 31 homepage = "https://github.com/getpelican/feedgenerator"; 32 license = licenses.bsd3; 33 maintainers = [ ]; 34 }; 35}