My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/docopt/default.nix

17 lines
395 B

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "docopt";
version = "0.6.2";
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;
};
}