linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / protego / default.nix
blobad7e4aa4af6e16fdd16a253bb5dc1d2c4416671b
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , six
5 , pytest
6 }:
8 buildPythonPackage rec {
9   pname = "Protego";
10   version = "0.1.16";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "a682771bc7b51b2ff41466460896c1a5a653f9a1e71639ef365a72e66d8734b4";
15   };
16   propagatedBuildInputs = [ six ];
18   checkInputs = [ pytest ];
20   checkPhase = ''
21     pytest tests
22   '';
24   meta = with lib; {
25     description = "A pure-Python robots.txt parser with support for modern conventions";
26     homepage = "https://github.com/scrapy/protego";
27     license = licenses.bsd3;
28     maintainers = [ maintainers.marsam ];
29   };