python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / pass2csv / default.nix
blob2e48f541ca84e28e1bb72fd6f9dc521b2cc56335
1 { buildPythonApplication
2 , fetchPypi
3 , lib
4 , python-gnupg
5 , setuptools
6 }:
8 buildPythonApplication rec {
9   pname = "pass2csv";
10   version = "0.3.2";
11   format = "pyproject";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "03a11bd0b0905737f4adb21d87aa1653d84cc1d9b5dcfdfb8a29092245d65db8";
16   };
18   nativeBuildInputs = [
19     setuptools
20   ];
22   propagatedBuildInputs = [
23     python-gnupg
24   ];
26   # Project has no tests.
27   doCheck = false;
29   meta = with lib; {
30     description = "Export pass(1), \"the standard unix password manager\", to CSV";
31     homepage = "https://github.com/reinefjord/pass2csv";
32     license = licenses.mit;
33     maintainers = with maintainers; [ wolfangaukang ];
34   };