about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/stdiomask/default.nix
blob: 1ad09c22da8ecfd824c0ce2d21264f66f3214d85 (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
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "stdiomask";
  version = "0.0.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "19m3p6i7fj7nmkbsjhiha3f2l7d05j9gf9ha2pd0pqfrx9lp1r61";
  };

  # tests are not published: https://github.com/asweigart/stdiomask/issues/5
  doCheck = false;
  pythonImportsCheck = [ "stdiomask" ];

  meta = with lib; {
    description = "Python module for masking passwords";
    homepage = "https://github.com/asweigart/stdiomask";
    license = with licenses; [ gpl3Plus ];
    maintainers = with maintainers; [ fab ];
  };
}