depot/third_party/nixpkgs/pkgs/development/python-modules/rubymarshal/default.nix
Default email 6ae7ad3cc5 Project import generated by Copybara.
GitOrigin-RevId: a322b32e9d74fb476944ff6cfb55833dc69cfaaa
2020-11-19 01:13:47 +01:00

26 lines
655 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, hypothesis, isPy3k }:
buildPythonPackage rec {
pname = "rubymarshal";
version = "1.2.7";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "94aa84fa42393f773c8215fab679bd3b72bbdb9f7931643d3672184cde9981d9";
};
propagatedBuildInputs = [ hypothesis ];
# pypi doesn't distribute tests
doCheck = false;
pythonImportsCheck = [ "rubymarshal" ];
meta = with stdenv.lib; {
homepage = "https://github.com/d9pouces/RubyMarshal/";
description = "Read and write Ruby-marshalled data";
license = licenses.wtfpl;
maintainers = [ maintainers.ryantm ];
};
}