summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/args
diff options
context:
space:
mode:
authorwisut hantanong <wizzup@gmail.com>2017-07-28 14:49:14 +0700
committerwisut hantanong <wizzup@gmail.com>2017-07-28 16:07:37 +0700
commitff0e08c015ea3bf788ef2b2bb0a44df7fef445da (patch)
treee39d8ab61f2f884ae6c030330028b945e319f0cc /pkgs/development/python-modules/args
parente77f62df0fcbc118c539501a0b286d09e8bd8897 (diff)
python.pkgs.args: move to separate expression
Diffstat (limited to 'pkgs/development/python-modules/args')
-rw-r--r--pkgs/development/python-modules/args/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/args/default.nix b/pkgs/development/python-modules/args/default.nix
new file mode 100644
index 000000000000..7431f4f478f5
--- /dev/null
+++ b/pkgs/development/python-modules/args/default.nix
@@ -0,0 +1,17 @@
+{ stdenv, buildPythonPackage, fetchPypi }:
+
+buildPythonPackage rec {
+ pname = "args";
+ version = "0.1.0";
+ name = "${pname}-${version}";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "a785b8d837625e9b61c39108532d95b85274acd679693b71ebb5156848fcf814";
+ };
+
+ meta = with stdenv.lib; {
+ description = "Command Arguments for Humans";
+ homepage = "https://github.com/kennethreitz/args";
+ };
+}