nixpkgs/pkgs/development/python-modules/rubymarshal/default.nix
R. RyanTM 33656e9734 python37Packages.rubymarshal: 1.0.3 -> 1.2.6
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-rubymarshal/versions
2019-06-17 18:07:38 -07:00

21 lines
514 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, hypothesis }:
buildPythonPackage rec {
pname = "rubymarshal";
version = "1.2.6";
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 ];
};
}