My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/update-copyright/default.nix

22 lines
485 B

{ lib, buildPythonPackage, fetchPypi, isPy3k }:
buildPythonPackage rec {
pname = "update-copyright";
version = "0.6.2";
disabled = !isPy3k;
# Has no tests
doCheck = false;
src = fetchPypi {
inherit pname version;
sha256 = "17ybdgbdc62yqhda4kfy1vcs1yzp78d91qfhj5zbvz1afvmvdk7z";
};
meta = with lib; {
description = "An automatic copyright update tool";
homepage = "http://blog.tremily.us/posts/update-copyright";
license = licenses.gpl3;
};
}