Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 525 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchurl 4, pyperclip 5, urwid 6}: 7 8buildPythonPackage rec { 9 version = "0.1.4"; 10 pname = "upass"; 11 12 src = fetchurl { 13 url = "https://github.com/Kwpolska/upass/archive/v${version}.tar.gz"; 14 sha256 = "0f2lyi7xhvb60pvzx82dpc13ksdj5k92ww09czclkdz8k0dxa7hb"; 15 }; 16 17 propagatedBuildInputs = [ pyperclip urwid ]; 18 19 doCheck = false; 20 21 meta = with stdenv.lib; { 22 description = "Console UI for pass"; 23 homepage = "https://github.com/Kwpolska/upass"; 24 license = licenses.bsd3; 25 }; 26 27}