depot/third_party/nixpkgs/pkgs/development/python-modules/rubymarshal/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

27 lines
670 B
Nix

{ lib, buildPythonPackage, fetchPypi, hypothesis, isPy3k }:
buildPythonPackage rec {
pname = "rubymarshal";
version = "1.2.7";
format = "setuptools";
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 ];
};
}