My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/rubymarshal/default.nix

26 lines
645 B

{ lib, 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 lib; {
homepage = "https://github.com/d9pouces/RubyMarshal/";
description = "Read and write Ruby-marshalled data";
license = licenses.wtfpl;
maintainers = [ maintainers.ryantm ];
};
}