summary refs log tree commit diff
path: root/pkgs/development/python-modules/rubymarshal
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-05-27 09:13:14 -0700
committerRyan Mulligan <ryan@ryantm.com>2018-05-27 09:13:14 -0700
commit0163b98641be7a143a0d794c9f44fe1a11250fcb (patch)
treea401923b32a5186f066ee76b783c2a11522f1bfb /pkgs/development/python-modules/rubymarshal
parentb2317a0b870a6c80874b08b533416f7428a2c1ad (diff)
downloadnixpkgs-0163b98641be7a143a0d794c9f44fe1a11250fcb.tar
nixpkgs-0163b98641be7a143a0d794c9f44fe1a11250fcb.tar.gz
nixpkgs-0163b98641be7a143a0d794c9f44fe1a11250fcb.tar.bz2
nixpkgs-0163b98641be7a143a0d794c9f44fe1a11250fcb.tar.lz
nixpkgs-0163b98641be7a143a0d794c9f44fe1a11250fcb.tar.xz
nixpkgs-0163b98641be7a143a0d794c9f44fe1a11250fcb.tar.zst
nixpkgs-0163b98641be7a143a0d794c9f44fe1a11250fcb.zip
python.pkgs.rubymarshal: init at 1.0.3
Diffstat (limited to 'pkgs/development/python-modules/rubymarshal')
-rw-r--r--pkgs/development/python-modules/rubymarshal/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/rubymarshal/default.nix b/pkgs/development/python-modules/rubymarshal/default.nix
new file mode 100644
index 00000000000..7184795639c
--- /dev/null
+++ b/pkgs/development/python-modules/rubymarshal/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, buildPythonPackage, fetchPypi, python, hypothesis }:
+
+buildPythonPackage rec {
+  pname = "rubymarshal";
+  version = "1.0.3";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "131lbc18s3rlmby2dpbvi4msz13gqw6xvx067mh4zcx9npygn9r2";
+  };
+
+  propagatedBuildInputs = [ hypothesis ];
+
+  meta = with stdenv.lib; {
+    homepage = https://github.com/d9pouces/RubyMarshal/;
+    description = "Read and write Ruby-marshalled data";
+    license = licenses.wtfpl;
+    maintainers = [ maintainers.ryantm ];
+  };
+}