pythonPackages.update-copyright: init at 0.6.2

This commit is contained in:
Profpatsch
2018-12-25 10:30:58 +01:00
parent 958a669e83
commit aebec73071
2 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k }:
buildPythonPackage rec {
pname = "update-copyright";
version = "0.6.2";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "17ybdgbdc62yqhda4kfy1vcs1yzp78d91qfhj5zbvz1afvmvdk7z";
};
meta = with lib; {
description = "An automatic copyright update tool";
license = licenses.gpl3;
};
}