pythonPackages.protego: init at 0.1.16

This commit is contained in:
Mario Rodas 2020-03-03 04:20:00 -05:00
parent a437fe2565
commit 26d0577ef2
No known key found for this signature in database
GPG Key ID: 325649BCA6D53027
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ lib
, buildPythonPackage
, fetchPypi
, six
, pytest
}:
buildPythonPackage rec {
pname = "Protego";
version = "0.1.16";
src = fetchPypi {
inherit pname version;
sha256 = "a682771bc7b51b2ff41466460896c1a5a653f9a1e71639ef365a72e66d8734b4";
};
propagatedBuildInputs = [ six ];
checkInputs = [ pytest ];
checkPhase = ''
pytest tests
'';
meta = with lib; {
description = "A pure-Python robots.txt parser with support for modern conventions";
homepage = "https://github.com/scrapy/protego";
license = licenses.bsd3;
maintainers = [ maintainers.marsam ];
};
}

View File

@ -5189,6 +5189,8 @@ in {
progressbar33 = callPackage ../development/python-modules/progressbar33 { };
protego = callPackage ../development/python-modules/protego {};
ldap = callPackage ../development/python-modules/ldap {
inherit (pkgs) openldap cyrus_sasl;
};