1{ lib
2, buildPythonPackage
3, fetchPypi
4, nose
5, pep8
6}:
7
8buildPythonPackage rec {
9 pname = "tissue";
10 version = "0.9.2";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "7e34726c3ec8fae358a7faf62de172db15716f5582e5192a109e33348bd76c2e";
15 };
16
17 buildInputs = [ nose ];
18 propagatedBuildInputs = [ pep8 ];
19
20 meta = with lib; {
21 homepage = "https://github.com/WoLpH/tissue";
22 description = "Tissue - automated pep8 checker for nose";
23 license = licenses.lgpl2;
24 maintainers = with maintainers; [ domenkozar ];
25 };
26
27}