1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "incremental"; 5 version = "17.5.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "7b751696aaf36eebfab537e458929e194460051ccad279c72b755a167eebd4b3"; 10 }; 11 12 meta = with lib; { 13 homepage = https://github.com/twisted/treq; 14 description = "Incremental is a small library that versions your Python projects"; 15 license = licenses.mit; 16 maintainers = with maintainers; [ nand0p ]; 17 }; 18}