Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / htmllaundry / default.nix
blob0c7a3b8df81abc0005b26acf91996fdb25c0fa8e
1 { lib
2 , buildPythonPackage
3 , fetchPypi, nose
4 , six
5 , lxml
6 }:
8 buildPythonPackage rec {
9   pname = "htmllaundry";
10   version = "2.2";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "9124f067d3c06ef2613e2cc246b2fde2299802280a8b0e60dc504137085f0334";
16   };
18   buildInputs = [ nose ];
19   propagatedBuildInputs = [ six lxml ];
21   # some tests fail, probably because of changes in lxml
22   # not relevant for me, if releavnt for you, fix it...
23   doCheck = false;
25   meta = with lib; {
26     description = "Simple HTML cleanup utilities";
27     license = licenses.bsd3;
28     homepage = "https://pypi.org/project/htmllaundry/";
29   };