Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / tissue / default.nix
blob3c5b1a452b5d369509e0a5f382cb899d3aac3978
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , nose
5 , pep8
6 }:
8 buildPythonPackage rec {
9   pname = "tissue";
10   version = "0.9.2";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "7e34726c3ec8fae358a7faf62de172db15716f5582e5192a109e33348bd76c2e";
16   };
18   buildInputs = [ nose ];
19   propagatedBuildInputs = [ pep8 ];
21   meta = with lib; {
22     homepage = "https://github.com/WoLpH/tissue";
23     description = "Tissue - automated pep8 checker for nose";
24     license = licenses.lgpl2;
25     maintainers = with maintainers; [ domenkozar ];
26   };