Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / stdiomask / default.nix
blob1ad09c22da8ecfd824c0ce2d21264f66f3214d85
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "stdiomask";
8   version = "0.0.6";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "19m3p6i7fj7nmkbsjhiha3f2l7d05j9gf9ha2pd0pqfrx9lp1r61";
13   };
15   # tests are not published: https://github.com/asweigart/stdiomask/issues/5
16   doCheck = false;
17   pythonImportsCheck = [ "stdiomask" ];
19   meta = with lib; {
20     description = "Python module for masking passwords";
21     homepage = "https://github.com/asweigart/stdiomask";
22     license = with licenses; [ gpl3Plus ];
23     maintainers = with maintainers; [ fab ];
24   };