python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / uddup / default.nix
blob5cde218bacfea9ff2c2306d9604be131aaa19bb0
1 { lib
2 , fetchFromGitHub
3 , python3
4 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "uddup";
8   version = "0.9.3";
9   format = "setuptools";
11   src = fetchFromGitHub {
12     owner = "rotemreiss";
13     repo = pname;
14     rev = "v${version}";
15     sha256 = "1f5dm3772hiik9irnyvbs7wygcafbwi7czw3b47cwhb90b8fi5hg";
16   };
18   propagatedBuildInputs = with python3.pkgs; [
19     colorama
20   ];
22   checkInputs = with python3.pkgs; [
23     pytestCheckHook
24   ];
26   pythonImportsCheck = [
27     "uddup"
28   ];
30   meta = with lib; {
31     description = "Tool for de-duplication URLs";
32     homepage = "https://github.com/rotemreiss/uddup";
33     license = with licenses; [ mit ];
34     maintainers = with maintainers; [ fab ];
35   };