about summary refs log tree commit diff
path: root/pkgs
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
parentb2317a0b870a6c80874b08b533416f7428a2c1ad (diff)
downloadnixlib-0163b98641be7a143a0d794c9f44fe1a11250fcb.tar
nixlib-0163b98641be7a143a0d794c9f44fe1a11250fcb.tar.gz
nixlib-0163b98641be7a143a0d794c9f44fe1a11250fcb.tar.bz2
nixlib-0163b98641be7a143a0d794c9f44fe1a11250fcb.tar.lz
nixlib-0163b98641be7a143a0d794c9f44fe1a11250fcb.tar.xz
nixlib-0163b98641be7a143a0d794c9f44fe1a11250fcb.tar.zst
nixlib-0163b98641be7a143a0d794c9f44fe1a11250fcb.zip
python.pkgs.rubymarshal: init at 1.0.3
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/rubymarshal/default.nix20
-rw-r--r--pkgs/top-level/python-packages.nix2
2 files changed, 22 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 000000000000..7184795639c4
--- /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 ];
+  };
+}
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index fdd0b3564669..fe167d56c111 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -18195,6 +18195,8 @@ EOF
   pysdl2 = callPackage ../development/python-modules/pysdl2 { };
 
   pyogg = callPackage ../development/python-modules/pyogg { };
+
+  rubymarshal = callPackage ../development/python-modules/rubymarshal { };
 });
 
 in fix' (extends overrides packages)