Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / htmllistparse / default.nix
blob01fa41eae2feef0e9d2507283a0800fb36e8e29e
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools
5 , beautifulsoup4
6 , html5lib
7 , requests
8 , fusepy
9 }:
11 buildPythonPackage rec {
12   pname = "htmllistparse";
13   version = "0.6.1";
14   pyproject = true;
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-bcimvwPIQ7nTJYQ6JqI1GnlbVzzZKiybgnFiEBnGQII=";
19   };
21   nativeBuildInputs = [ setuptools ];
22   propagatedBuildInputs = [ beautifulsoup4 html5lib requests fusepy ];
24   # upstream has no tests
25   doCheck = false;
27   pythonImportsCheck = [
28     "htmllistparse"
29   ];
31   meta = with lib; {
32     homepage = "https://github.com/gumblex/htmllisting-parser";
33     description = "Python parser for Apache/nginx-style HTML directory listing";
34     mainProgram = "rehttpfs";
35     license = licenses.mit;
36     maintainers = with maintainers; [ hexchen ];
37   };