7 buildPythonPackage rec {
14 src = fetchFromGitHub {
18 sha256 = "11gn6nc6ypwivy20bx1r0rm2giblwx6jv485zk875a9pdbcwbrf6";
22 mkdir -p $out/share/src
23 install -m 755 -t $out/share/src nitpick.py
26 ln -s $out/share/src/nitpick.py $out/bin/nitpick
30 description = "Distributed issue tracker";
32 Nitpick is a distributed issue tracker. It helps keep track of which nits you
33 should pick. It's intended to be used with source code such that the issues can
34 follow the code via whatever VCS or distribution mechanism.
36 homepage = "http://travisbrown.ca/projects/nitpick/docs/nitpick.html";
37 license = with lib.licenses; gpl2;