blob: 0c7a3b8df81abc0005b26acf91996fdb25c0fa8e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{ lib
, buildPythonPackage
, fetchPypi, nose
, six
, lxml
}:
buildPythonPackage rec {
pname = "htmllaundry";
version = "2.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "9124f067d3c06ef2613e2cc246b2fde2299802280a8b0e60dc504137085f0334";
};
buildInputs = [ nose ];
propagatedBuildInputs = [ six lxml ];
# some tests fail, probably because of changes in lxml
# not relevant for me, if releavnt for you, fix it...
doCheck = false;
meta = with lib; {
description = "Simple HTML cleanup utilities";
license = licenses.bsd3;
homepage = "https://pypi.org/project/htmllaundry/";
};
}
|