blob: c9705285698d8efbe0d8b1edab573c49e49a73be (
plain)
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
|
{
buildPythonPackage,
fetchPypi,
setuptools,
lib,
}:
buildPythonPackage rec {
pname = "pwinput";
version = "1.0.3";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "pwinput";
hash = "sha256-yhqL0G4ohy11Hb1BMthjcSfCW0COo6NJN3MUpUkUJvM=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "pwinput" ];
# Requires graphical environment to use pyautogui
doCheck = false;
meta = {
description = "Python module that masks password input";
homepage = "https://github.com/asweigart/pwinput";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ bwkam ];
};
}
|