Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 26 lines 620 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytestCheckHook 5}: 6 7buildPythonPackage rec { 8 pname = "stdiomask"; 9 version = "0.0.6"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "19m3p6i7fj7nmkbsjhiha3f2l7d05j9gf9ha2pd0pqfrx9lp1r61"; 14 }; 15 16 # tests are not published: https://github.com/asweigart/stdiomask/issues/5 17 doCheck = false; 18 pythonImportsCheck = [ "stdiomask" ]; 19 20 meta = with lib; { 21 description = "Python module for masking passwords"; 22 homepage = "https://github.com/asweigart/stdiomask"; 23 license = with licenses; [ gpl3Plus ]; 24 maintainers = with maintainers; [ fab ]; 25 }; 26}