Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / rzpipe / default.nix
blobd5a98e0c63bb7a1d520e2bdfa2ad86b6aa7a7dc3
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 }:
7 buildPythonPackage rec {
8   pname = "rzpipe";
9   version = "0.6.0";
10   format = "setuptools";
12   disabled = pythonOlder "3.5";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-py4oiNp+WUcOGHn2AdHyIpgV8BsI8A1gtJi2joi1Wxc=";
17   };
19   # No native rz_core library
20   doCheck = false;
22   pythonImportsCheck = [
23     "rzpipe"
24   ];
26   meta = with lib; {
27     description = "Python interface for rizin";
28     homepage = "https://rizin.re";
29     changelog = "https://github.com/rizinorg/rizin/releases/tag/v${version}";
30     license = licenses.mit;
31     maintainers = with maintainers; [ fab ];
32   };