Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 554 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pythonOlder 5}: 6 7buildPythonPackage rec { 8 pname = "rzpipe"; 9 version = "0.5.1"; 10 11 disabled = pythonOlder "3.5"; 12 13 src = fetchPypi { 14 inherit pname version; 15 hash = "sha256-0xbkdgMDiBwSzXmlVmRwHlLBgVmfZgmM8lQ4ALgmaBk="; 16 }; 17 18 # No native rz_core library 19 doCheck = false; 20 21 pythonImportsCheck = [ 22 "rzpipe" 23 ]; 24 25 meta = with lib; { 26 description = "Python interface for rizin"; 27 homepage = "https://rizin.re"; 28 license = licenses.mit; 29 maintainers = with maintainers; [ fab ]; 30 }; 31}