Merge pull request #279960 from r-ryantm/auto-update/python310Packages.pycaption

python310Packages.pycaption: 2.2.0 -> 2.2.1

authored by Robert Schütz and committed by GitHub 44596db6 13d4b242

+13 -8
+13 -8
pkgs/development/python-modules/pycaption/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , pythonOlder 4 - , fetchPypi 4 + , fetchFromGitHub 5 + , setuptools 5 6 , beautifulsoup4 6 7 , lxml 7 8 , cssutils ··· 12 13 13 14 buildPythonPackage rec { 14 15 pname = "pycaption"; 15 - version = "2.2.0"; 16 + version = "2.2.1"; 16 17 17 18 disabled = pythonOlder "3.6"; 18 19 19 - format = "setuptools"; 20 + pyproject = true; 20 21 21 - src = fetchPypi { 22 - inherit pname version; 23 - hash = "sha256-W/sD/Nh2k1z7YvFVnQB9dGa1bXoCTb4QrPk/1mi4Hdk="; 22 + src = fetchFromGitHub { 23 + owner = "pbs"; 24 + repo = "pycaption"; 25 + rev = version; 26 + hash = "sha256-IPCU9MsBY+Vsk6SrR9+3j4Izfhw5LeUrK0KUa3seSs4="; 24 27 }; 28 + 29 + nativeBuildInputs = [ 30 + setuptools 31 + ]; 25 32 26 33 propagatedBuildInputs = [ 27 34 beautifulsoup4 ··· 37 44 pytest-lazy-fixture 38 45 pytestCheckHook 39 46 ]; 40 - 41 - doCheck = false; 42 47 43 48 meta = with lib; { 44 49 changelog = "https://github.com/pbs/pycaption/blob/${version}/docs/changelog.rst";