aboutsummaryrefslogtreecommitdiff
path: root/pkgs/msynth/package.nix
blob: cf443687fdaf603face86ee4e0015f9ae630a713 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ lib
, buildPythonPackage
, fetchFromGitHub

, future
, z3
, miasm
}:
buildPythonPackage rec {
  pname = "msynth";
  version = "d072f07ed82c74e3a1846b963b037e0f8df96d29";
  format = "setuptools";

  #disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "mrphrazer";
    repo = "msynth";
    rev = "${version}";
    hash = "sha256-HJLR8b2n1nQ8BKz0vX+41Yt0/g8IL27IVBvt4pnLI/0=";
    name = "${pname}-${version}";
  };

  propagatedBuildInputs = [
    future
    miasm
    z3
  ];

  doCheck = false;

  pythonImportsCheck = [ "msynth" ];

  meta = with lib; {
    license = licenses.gpl2;
  };
}