about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/upass/default.nix
blob: 342cd79e6837460610b772358802a86238766b6a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{ lib
, buildPythonPackage
, fetchFromGitHub
, pyperclip
, urwid
}:

buildPythonPackage rec {
  pname = "upass";
  version = "0.2.1";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "Kwpolska";
    repo = "upass";
    rev = "v${version}";
    sha256 = "0bgplq07dmlld3lp6jag1w055glqislfgwwq2k7cb2bzjgvysdnj";
  };

  propagatedBuildInputs = [
    pyperclip
    urwid
  ];

  # Projec thas no tests
  doCheck = false;

  postInstall = ''
    export HOME=$(mktemp -d);
    mkdir $HOME/.config
  '';

  pythonImportsCheck = [
    "upass"
  ];

  meta = with lib; {
    description = "Console UI for pass";
    homepage = "https://github.com/Kwpolska/upass";
    license = licenses.bsd3;
    maintainers = with maintainers; [ ];
  };
}