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