Unverified Commit d0330fba authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.pywerview: 0.7.5 -> 0.7.6 (#498141)

parents 4ac2eb7c c8a93a05
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -11,16 +11,16 @@
  setuptools,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "pywerview";
  version = "0.7.5";
  version = "0.7.6";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "the-useless-one";
    repo = "pywerview";
    tag = "v${version}";
    hash = "sha256-wl7/u9Uja/FflO3tN3UyanX2LIRG417RfWdyZCtUtGs=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-i4YV6PfcazoW8z2Awbn8ake4qhA/m43UzECqiEO4QLg=";
  };

  build-system = [ setuptools ];
@@ -46,9 +46,9 @@ buildPythonPackage rec {
  meta = {
    description = "Module for PowerSploit's PowerView support";
    homepage = "https://github.com/the-useless-one/pywerview";
    changelog = "https://github.com/the-useless-one/pywerview/releases/tag/${src.tag}";
    changelog = "https://github.com/the-useless-one/pywerview/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.gpl3Plus;
    maintainers = with lib.maintainers; [ fab ];
    mainProgram = "pywerview";
  };
}
})