summary refs log tree commit diff
path: root/pkgs/development/python-modules/twitter-common-options
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-28 12:24:18 -0400
committerChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-30 00:50:56 -0400
commit6ee690466c4c9de3e76cd4b242cb6d11f3942925 (patch)
treed6ca39627fb9afa8840107290463e8e730121669 /pkgs/development/python-modules/twitter-common-options
parent91bf06221fa7959901a0b0ccaf810fc643325725 (diff)
downloadnixpkgs-6ee690466c4c9de3e76cd4b242cb6d11f3942925.tar
nixpkgs-6ee690466c4c9de3e76cd4b242cb6d11f3942925.tar.gz
nixpkgs-6ee690466c4c9de3e76cd4b242cb6d11f3942925.tar.bz2
nixpkgs-6ee690466c4c9de3e76cd4b242cb6d11f3942925.tar.lz
nixpkgs-6ee690466c4c9de3e76cd4b242cb6d11f3942925.tar.xz
nixpkgs-6ee690466c4c9de3e76cd4b242cb6d11f3942925.tar.zst
nixpkgs-6ee690466c4c9de3e76cd4b242cb6d11f3942925.zip
pythonPackages.twitter-common-options: refactor move to python-modules
Diffstat (limited to 'pkgs/development/python-modules/twitter-common-options')
-rw-r--r--pkgs/development/python-modules/twitter-common-options/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/twitter-common-options/default.nix b/pkgs/development/python-modules/twitter-common-options/default.nix
new file mode 100644
index 00000000000..36b18403fab
--- /dev/null
+++ b/pkgs/development/python-modules/twitter-common-options/default.nix
@@ -0,0 +1,22 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+  pname   = "twitter.common.options";
+  version = "0.3.9";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0d1czag5mcxg0vcnlklspl2dvdab9kmznsycj04d3vggi158ljrd";
+  };
+
+  meta = with stdenv.lib; {
+    description = "Twitter's optparse wrapper";
+    homepage    = "https://twitter.github.io/commons/";
+    license     = licenses.asl20;
+    maintainers = with maintainers; [ copumpkin ];
+  };
+
+}