mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 12:23:02 +00:00
python311Packages.pwinput: init at 1.3.0
This commit is contained in:
parent
28da83bb52
commit
e640bd83b7
35
pkgs/development/python-modules/pwinput/default.nix
Normal file
35
pkgs/development/python-modules/pwinput/default.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
setuptools,
|
||||
lib,
|
||||
pythonOlder,
|
||||
}:
|
||||
buildPythonPackage rec {
|
||||
pname = "pwinput";
|
||||
version = "1.0.3";
|
||||
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -9996,6 +9996,8 @@ self: super: with self; {
|
||||
|
||||
pyaprilaire = callPackage ../development/python-modules/pyaprilaire { };
|
||||
|
||||
pwinput = callPackage ../development/python-modules/pwinput { };
|
||||
|
||||
pybars3 = callPackage ../development/python-modules/pybars3 { };
|
||||
|
||||
pymeta3 = callPackage ../development/python-modules/pymeta3 { };
|
||||
|
Loading…
Reference in New Issue
Block a user