lol

Merge pull request #134873 from r-ryantm/auto-update/python3.8-unidiff

python38Packages.unidiff: 0.6.0 -> 0.7.0

authored by

Mario Rodas and committed by
GitHub
891efb73 27f40053

+8 -8
+8 -8
pkgs/development/python-modules/unidiff/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub }: 1 + { lib, buildPythonPackage, fetchPypi }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "unidiff"; 5 - version = "0.6.0"; 5 + version = "0.7.0"; 6 6 7 - # PyPI tarball doesn't ship tests 8 - src = fetchFromGitHub { 9 - owner = "matiasb"; 10 - repo = "python-unidiff"; 11 - rev = "v${version}"; 12 - sha256 = "0farwkw0nbb5h4369pq3i6pp4047hav0h88ba55rzz5k7mr25rgi"; 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "91bb13b4969514a400679d9ae5e29a6ffad85346087677f8b5e2e036af817447"; 13 10 }; 14 11 12 + pythonImportsCheck = [ "unidiff" ]; 13 + 15 14 meta = with lib; { 16 15 description = "Unified diff python parsing/metadata extraction library"; 17 16 homepage = "https://github.com/matiasb/python-unidiff"; 17 + changelog = "https://github.com/matiasb/python-unidiff/raw/v${version}/HISTORY"; 18 18 license = licenses.mit; 19 19 maintainers = [ maintainers.marsam ]; 20 20 };