blob: d909162d7f188faefb7507bc98a0db982c689377 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "docopt";
version = "0.6.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "14f4hn6d1j4b99svwbaji8n2zj58qicyz19mm0x6pmhb50jsics9";
};
meta = with lib; {
description = "Pythonic argument parser, that will make you smile";
homepage = "http://docopt.org/";
license = licenses.mit;
};
}
|