Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, buildPythonPackage, fetchPypi, hypothesis }: 2 3buildPythonPackage rec { 4 pname = "rubymarshal"; 5 version = "1.0.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "131lbc18s3rlmby2dpbvi4msz13gqw6xvx067mh4zcx9npygn9r2"; 10 }; 11 12 propagatedBuildInputs = [ hypothesis ]; 13 14 meta = with stdenv.lib; { 15 homepage = https://github.com/d9pouces/RubyMarshal/; 16 description = "Read and write Ruby-marshalled data"; 17 license = licenses.wtfpl; 18 maintainers = [ maintainers.ryantm ]; 19 }; 20}