summary refs log tree commit diff
path: root/pkgs/development/python-modules/astor
diff options
context:
space:
mode:
authorwisut hantanong <wizzup@gmail.com>2017-07-28 14:26:20 +0700
committerwisut hantanong <wizzup@gmail.com>2017-07-28 16:07:36 +0700
commitf970ee8e7e923b18c2bfe6f36594fbedaaaeaf70 (patch)
treeb29b94c92769e66b3b2b2698ec56c9ed531b874e /pkgs/development/python-modules/astor
parent6d09e0c9bea3944e9c7dfa4601d2454886afb257 (diff)
downloadnixlib-f970ee8e7e923b18c2bfe6f36594fbedaaaeaf70.tar
nixlib-f970ee8e7e923b18c2bfe6f36594fbedaaaeaf70.tar.gz
nixlib-f970ee8e7e923b18c2bfe6f36594fbedaaaeaf70.tar.bz2
nixlib-f970ee8e7e923b18c2bfe6f36594fbedaaaeaf70.tar.lz
nixlib-f970ee8e7e923b18c2bfe6f36594fbedaaaeaf70.tar.xz
nixlib-f970ee8e7e923b18c2bfe6f36594fbedaaaeaf70.tar.zst
nixlib-f970ee8e7e923b18c2bfe6f36594fbedaaaeaf70.zip
python.pkgs.astor: move to separate expression
Diffstat (limited to 'pkgs/development/python-modules/astor')
-rw-r--r--pkgs/development/python-modules/astor/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/astor/default.nix b/pkgs/development/python-modules/astor/default.nix
new file mode 100644
index 000000000000..965bf37d5200
--- /dev/null
+++ b/pkgs/development/python-modules/astor/default.nix
@@ -0,0 +1,19 @@
+{ stdenv, buildPythonPackage, fetchPypi }:
+
+buildPythonPackage rec {
+  pname = "astor";
+  version = "0.5";
+  name = "${pname}-${version}";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1fdafq5hkis1fxqlmhw0sn44zp2ar46nxhbc22cvwg7hsd8z5gsa";
+  };
+
+  meta = with stdenv.lib; {
+    description = "Library for reading, writing and rewriting python AST";
+    homepage = https://github.com/berkerpeksag/astor;
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ nixy ];
+  };
+}