Merge pull request #115716 from fabaff/uddup

uddup: init at 0.9.3
This commit is contained in:
Sandro 2021-03-10 10:00:44 +01:00 committed by GitHub
commit 075fefaa03
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ lib
, buildPythonApplication
, colorama
, fetchFromGitHub
, pytestCheckHook
}:
buildPythonApplication rec {
pname = "uddup";
version = "0.9.3";
src = fetchFromGitHub {
owner = "rotemreiss";
repo = pname;
rev = "v${version}";
sha256 = "1f5dm3772hiik9irnyvbs7wygcafbwi7czw3b47cwhb90b8fi5hg";
};
propagatedBuildInputs = [
colorama
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "uddup" ];
meta = with lib; {
description = "Tool for de-duplication URLs";
homepage = "https://github.com/rotemreiss/uddup";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -13126,6 +13126,8 @@ in
inherit (darwin.apple_sdk.frameworks) CoreFoundation;
};
uddup = python3Packages.callPackage ../tools/security/uddup { };
udis86 = callPackage ../development/tools/udis86 { };
uefi-firmware-parser = callPackage ../development/tools/analysis/uefi-firmware-parser { };