nixpkgs/pkgs/development/python-modules/pycodestyle/default.nix

19 lines
473 B
Nix
Raw Normal View History

2017-07-13 02:32:27 +02:00
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "pycodestyle";
2018-07-22 12:16:52 +02:00
version = "2.4.0";
2017-07-13 02:32:27 +02:00
src = fetchPypi {
inherit pname version;
2018-07-22 12:16:52 +02:00
sha256 = "cbfca99bd594a10f674d0cd97a3d802a1fdef635d4361e1a2658de47ed261e3a";
2017-07-13 02:32:27 +02:00
};
meta = with lib; {
description = "Python style guide checker (formerly called pep8)";
homepage = https://pycodestyle.readthedocs.io;
license = licenses.mit;
maintainers = with maintainers; [ garbas ];
};
}