1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "stdiomask";
9 version = "0.0.6";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "19m3p6i7fj7nmkbsjhiha3f2l7d05j9gf9ha2pd0pqfrx9lp1r61";
15 };
16
17 # tests are not published: https://github.com/asweigart/stdiomask/issues/5
18 doCheck = false;
19 pythonImportsCheck = [ "stdiomask" ];
20
21 meta = with lib; {
22 description = "Python module for masking passwords";
23 homepage = "https://github.com/asweigart/stdiomask";
24 license = with licenses; [ gpl3Plus ];
25 maintainers = with maintainers; [ fab ];
26 };
27}