nixpkgs/pkgs/development/python-modules/flake8-debugger/default.nix
Frederik Rietdijk 959842a9c7 Python: add pname attributes to libraries
so that we can use the update script.
2017-05-27 11:30:21 +02:00

20 lines
603 B
Nix

{ lib, fetchurl, buildPythonPackage, flake8, nose }:
buildPythonPackage rec {
pname = "flake8-debugger";
name = "${pname}-${version}";
version = "1.4.0";
src = fetchurl {
url = "mirror://pypi/f/flake8-debugger/${name}.tar.gz";
sha256 = "0chjfa6wvnqjnx778qzahhwvjx1j0rc8ax0ipp5bn70gf47lj62r";
};
buildInputs = [ nose ];
propagatedBuildInputs = [ flake8 ];
meta = {
homepage = https://github.com/jbkahn/flake8-debugger;
description = "ipdb/pdb statement checker plugin for flake8";
maintainers = with lib.maintainers; [ johbo ];
license = lib.licenses.mit;
};
}