summary refs log tree commit diff
path: root/pkgs/development/python-modules/rubymarshal/default.nix
blob: 4f042dcf90f7b736856d28af8684f6a2ab7ef7e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, buildPythonPackage, fetchPypi, hypothesis, isPy3k }:

buildPythonPackage rec {
  pname = "rubymarshal";
  version = "1.2.6";
  disabled = !isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "0gq344jlb9wkapzpxj7jqwjlc5ccdhhspkw6rfb1d0rammq6hpf6";
  };

  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 ];
  };
}