at 22.05-pre 581 B view raw
1{ lib, fetchurl, buildPythonApplication, pythonPackages }: 2 3with lib; 4 5buildPythonApplication rec { 6 pname = "yolk"; 7 version = "0.4.3"; 8 9 src = fetchurl { 10 url = "mirror://pypi/y/yolk/yolk-${version}.tar.gz"; 11 sha256 = "1f6xwx210jnl5nq0m3agh2p1cxmaizawaf3fwq43q4yw050fn1qw"; 12 }; 13 14 buildInputs = with pythonPackages; [ nose ]; 15 16 meta = { 17 description = "Command-line tool for querying PyPI and Python packages installed on your system"; 18 homepage = "https://github.com/cakebread/yolk"; 19 maintainers = with maintainers; []; 20 license = licenses.bsd3; 21 }; 22} 23