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

python310Packages.pytest-filter-subpackage: add changelog to meta

authored by

Fabian Affolter and committed by
GitHub
81503a91 f4edf5db

+14 -4
+14 -4
pkgs/development/python-modules/pytest-filter-subpackage/default.nix
··· 5 5 , pytest-cov 6 6 , pytest-doctestplus 7 7 , pytestCheckHook 8 + , pythonOlder 8 9 , setuptools-scm 9 10 }: 10 11 11 12 buildPythonPackage rec { 12 13 pname = "pytest-filter-subpackage"; 13 14 version = "0.1.2"; 15 + format = "setuptools"; 16 + 17 + disabled = pythonOlder "3.7"; 14 18 15 19 src = fetchPypi { 16 20 inherit pname version; 17 - sha256 = "sha256-H66jZxeAPlJFiNbBCdJtINOzRCLo1qloEnWJd9ygF4I="; 21 + hash = "sha256-H66jZxeAPlJFiNbBCdJtINOzRCLo1qloEnWJd9ygF4I="; 18 22 }; 19 23 20 24 nativeBuildInputs = [ 21 25 setuptools-scm 22 26 ]; 23 27 24 - buildInputs = [ pytest ]; 28 + buildInputs = [ 29 + pytest 30 + ]; 25 31 26 32 propagatedBuildInputs = [ 27 33 pytest-doctestplus ··· 39 33 ]; 40 34 41 35 # missing some files 42 - disabledTests = [ "with_rst" ]; 36 + disabledTests = [ 37 + "with_rst" 38 + ]; 43 39 44 40 meta = with lib; { 45 41 description = "Meta-package containing dependencies for testing"; 46 - homepage = "https://astropy.org"; 42 + homepage = "https://github.com/astropy/pytest-filter-subpackage"; 43 + changelog = "https://github.com/astropy/pytest-filter-subpackage/blob/v${version}/CHANGES.rst"; 47 44 license = licenses.bsd3; 45 + maintainers = with maintainers; [ ]; 48 46 }; 49 47 }