linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / rubymarshal / default.nix
blob51cec6f8602532e678778fa5d5d9bb57c38c05fd
1 { lib, buildPythonPackage, fetchPypi, hypothesis, isPy3k }:
3 buildPythonPackage rec {
4   pname = "rubymarshal";
5   version = "1.2.7";
6   disabled = !isPy3k;
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "94aa84fa42393f773c8215fab679bd3b72bbdb9f7931643d3672184cde9981d9";
11   };
13   propagatedBuildInputs = [ hypothesis ];
15   # pypi doesn't distribute tests
16   doCheck = false;
18   pythonImportsCheck = [ "rubymarshal" ];
20   meta = with lib; {
21     homepage = "https://github.com/d9pouces/RubyMarshal/";
22     description = "Read and write Ruby-marshalled data";
23     license = licenses.wtfpl;
24     maintainers = [ maintainers.ryantm ];
25   };