pythonPackages.docopt: Move to own file

This commit is contained in:
Elis Hirwing
2018-04-03 14:57:59 +02:00
committed by Frederik Rietdijk
parent 7cc875b947
commit 98c682e0d2
2 changed files with 18 additions and 14 deletions

View File

@@ -0,0 +1,17 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "docopt";
version = "0.6.2";
src = fetchPypi {
inherit pname version;
sha256 = "14f4hn6d1j4b99svwbaji8n2zj58qicyz19mm0x6pmhb50jsics9";
};
meta = with stdenv.lib; {
description = "Pythonic argument parser, that will make you smile";
homepage = http://docopt.org/;
license = licenses.mit;
};
}