about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/rubymarshal/default.nix
blob: d8c43c1ea8661d066ed647f8846c80034fc484ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi, 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 ];
  };
}