pythonPackages.hstspreload: 2020.12.22 -> 2021.2.1, add SuperSandro2000 as maintainer

This commit is contained in:
Sandro Jäckel 2021-02-13 08:59:38 +01:00
parent 7a5321375c
commit 40e09305b1
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -6,14 +6,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "hstspreload"; pname = "hstspreload";
version = "2020.12.22"; version = "2021.2.1";
disabled = isPy27; disabled = isPy27;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "sethmlarson"; owner = "sethmlarson";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "1jzcw4clmpbyw67pzskms5rq5b7285iwh42jzc4ly6jz9amggdzc"; sha256 = "sha256-R6tqGxGd6JymFgQX+deDPOtlKlwUjL7uf+zGdNxUW/s=";
}; };
# tests require network connection # tests require network connection
@ -25,6 +25,6 @@ buildPythonPackage rec {
description = "Chromium HSTS Preload list as a Python package and updated daily"; description = "Chromium HSTS Preload list as a Python package and updated daily";
homepage = "https://github.com/sethmlarson/hstspreload"; homepage = "https://github.com/sethmlarson/hstspreload";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = [ maintainers.costrouc ]; maintainers = with maintainers; [ costrouc SuperSandro2000 ];
}; };
} }