python3Packages.sgmllib3k: init at 1.0.0

This commit is contained in:
Bernardo Meurer 2020-12-04 11:45:34 -08:00 committed by Orivej Desh
parent e9a431d343
commit d0e31655f9
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ stdenv
, buildPythonPackage
, fetchFromGitHub
, isPy27
, lib
}:
buildPythonPackage rec {
pname = "sgmllib3k";
version = "1.0.0";
disabled = isPy27;
# fetchFromGitHub instead of fetchPypi to run tests.
src = fetchFromGitHub {
owner = "hsoft";
repo = "sgmllib";
rev = "799964676f35349ca2dd04503e34c2b3ad522c0d";
sha256 = "0bzf6pv85dzfxfysm6zbj8m40hp0xzr9h8qlk4hp3nmy88rznqvr";
};
meta = with lib; {
homepage = "https://pypi.org/project/sgmllib3k/";
description = "Python 3 port of sgmllib";
license = licenses.bsd2;
maintainers = with maintainers; [ lovesegfault ];
};
}

View file

@ -6696,6 +6696,8 @@ in {
sfepy = callPackage ../development/python-modules/sfepy { };
sgmllib3k = callPackage ../development/python-modules/sgmllib3k { };
shamir-mnemonic = callPackage ../development/python-modules/shamir-mnemonic { };
shap = callPackage ../development/python-modules/shap { };