python3Packages.hstspreload: init at 2019.12.25

This commit is contained in:
Chris Ostrouchov 2019-12-29 13:06:34 -05:00
parent 72638f4009
commit 16a6c12732
No known key found for this signature in database
GPG key ID: 9ED59B0AB1EAF573
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, isPy27
}:
buildPythonPackage rec {
pname = "hstspreload";
version = "2019.12.25";
disabled = isPy27;
src = fetchFromGitHub {
owner = "sethmlarson";
repo = pname;
rev = version;
sha256 = "1aa7jccwldxw3s0z668qqb0i0plsark1q3jvkmqkyp645w5bfilk";
};
# tests require network connection
doCheck = false;
meta = with lib; {
description = "Chromium HSTS Preload list as a Python package and updated daily";
homepage = https://github.com/sethmlarson/hstspreload;
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}

View file

@ -2616,6 +2616,8 @@ in {
hsaudiotag3k = callPackage ../development/python-modules/hsaudiotag3k { };
hstspreload = callPackage ../development/python-modules/hstspreload { };
htmlmin = callPackage ../development/python-modules/htmlmin {};
httpauth = callPackage ../development/python-modules/httpauth { };