3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #136419 from fabaff/bump-tldextract

python3Packages.tldextract: 3.1.1 -> 3.1.2
This commit is contained in:
Fabian Affolter 2021-09-02 09:15:05 +02:00 committed by GitHub
commit 3b2e5c6f62
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,12 +14,12 @@
buildPythonPackage rec {
pname = "tldextract";
version = "3.1.1";
version = "3.1.2";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-HViDxJbaOoqnHR9NpIYs43TcfM9F5Ltn3rIBbsNPjTM=";
sha256 = "sha256-0gNMNVhlH32P2t6oP7aBBQstZi3GegDZUDJtyQIClEQ=";
};
nativeBuildInputs = [ setuptools-scm ];