1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "args";
9 version = "0.1.0";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "a785b8d837625e9b61c39108532d95b85274acd679693b71ebb5156848fcf814";
15 };
16
17 meta = with lib; {
18 description = "Command Arguments for Humans";
19 homepage = "https://github.com/kennethreitz/args";
20 };
21}