nixpkgs/pkgs/development/python-modules/rubymarshal/default.nix

22 lines
546 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, hypothesis, isPy3k }:
2018-05-27 17:13:14 +01:00
buildPythonPackage rec {
pname = "rubymarshal";
version = "1.2.6";
disabled = !isPy3k;
2018-05-27 17:13:14 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "0gq344jlb9wkapzpxj7jqwjlc5ccdhhspkw6rfb1d0rammq6hpf6";
2018-05-27 17:13:14 +01:00
};
propagatedBuildInputs = [ hypothesis ];
meta = with stdenv.lib; {
homepage = "https://github.com/d9pouces/RubyMarshal/";
2018-05-27 17:13:14 +01:00
description = "Read and write Ruby-marshalled data";
license = licenses.wtfpl;
maintainers = [ maintainers.ryantm ];
};
}