depot/third_party/nixpkgs/pkgs/development/python-modules/stdiomask/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

26 lines
627 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "stdiomask";
version = "0.0.6";
format = "setuptools";
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 ];
};
}