Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, fetchurl, buildPythonPackage, flake8, nose }: 2 3buildPythonPackage rec { 4 pname = "flake8-debugger"; 5 name = "${pname}-${version}"; 6 version = "1.4.0"; 7 src = fetchurl { 8 url = "mirror://pypi/f/flake8-debugger/${name}.tar.gz"; 9 sha256 = "0chjfa6wvnqjnx778qzahhwvjx1j0rc8ax0ipp5bn70gf47lj62r"; 10 }; 11 buildInputs = [ nose ]; 12 propagatedBuildInputs = [ flake8 ]; 13 meta = { 14 homepage = https://github.com/jbkahn/flake8-debugger; 15 description = "ipdb/pdb statement checker plugin for flake8"; 16 maintainers = with lib.maintainers; [ johbo ]; 17 license = lib.licenses.mit; 18 }; 19}