Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 18 lines 466 B view raw
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "pycodestyle"; 5 version = "2.5.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "e40a936c9a450ad81df37f549d676d127b1b66000a6c500caa2b085bc0ca976c"; 10 }; 11 12 meta = with lib; { 13 description = "Python style guide checker (formerly called pep8)"; 14 homepage = https://pycodestyle.readthedocs.io; 15 license = licenses.mit; 16 maintainers = with maintainers; [ ]; 17 }; 18}