Unverified Commit f2e69a0f authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

python3Packages.shlib: 1.7 -> 1.8 (#440053)

parents c334ba51 2be7cf58
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -10,14 +10,14 @@

buildPythonPackage rec {
  pname = "shlib";
  version = "1.7";
  version = "1.8";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "KenKundert";
    repo = "shlib";
    tag = "v${version}";
    hash = "sha256-clhiTuU5vvZSzdGPA3CISiBTnAahvv1SOKAfMpb6lYU=";
    hash = "sha256-0BWTaHKGVKYIPQ9ifVWp2VZkSH3Gg/NgP3gPhkmw5S4=";
  };

  postPatch = ''
@@ -39,7 +39,7 @@ buildPythonPackage rec {
    description = "Shell library";
    homepage = "https://github.com/KenKundert/shlib";
    changelog = "https://github.com/KenKundert/shlib/releases/tag/${src.tag}";
    license = licenses.gpl3Plus;
    license = licenses.mit;
    maintainers = with maintainers; [ jpetrucciani ];
  };
}