blob: 142400367073635baa8ed77b4d26d69ed81af064 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{
lib,
buildPythonPackage,
fetchPypi,
pyyaml,
}:
buildPythonPackage rec {
pname = "cmdline";
version = "0.2.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "7cf6af53549892b2218c2f56a199dff54a733be5c5515c0fd626812070b0a86a";
};
# No tests, https://github.com/rca/cmdline/issues/1
doCheck = false;
propagatedBuildInputs = [ pyyaml ];
meta = {
description = "Utilities for consistent command line tools";
homepage = "https://github.com/rca/cmdline";
license = lib.licenses.asl20;
};
}
|