Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 23 lines 546 B view raw
1{ lib, fetchPypi, buildPythonPackage 2, flake8-polyfill }: 3 4buildPythonPackage rec { 5 pname = "pep8-naming"; 6 version = "0.9.1"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "a33d38177056321a167decd6ba70b890856ba5025f0a8eca6a3eda607da93caf"; 11 }; 12 13 propagatedBuildInputs = [ 14 flake8-polyfill 15 ]; 16 17 meta = with lib; { 18 homepage = https://github.com/PyCQA/pep8-naming; 19 description = "Check PEP-8 naming conventions, plugin for flake8"; 20 license = licenses.mit; 21 maintainers = with maintainers; [ eadwu ]; 22 }; 23}