about summary refs log tree commit diff
path: root/pkgs/development/python-modules/cozy/default.nix
blob: f7e0af082667a2878d9feddea701b038ea415218 (plain) (blame)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{ buildPythonPackage
, isPy3k
, fetchFromGitHub
, lib
, z3
, ply
, igraph
, oset
, ordered-set
, dictionaries
, setuptools
}:

buildPythonPackage {
  pname = "cozy";
  version = "2.0a1";
  disabled = !isPy3k;

  propagatedBuildInputs = [
    setuptools
    z3
    ply
    igraph
    oset
    ordered-set
    dictionaries
  ];

  src = fetchFromGitHub {
    owner = "CozySynthesizer";
    repo = "cozy";
    rev = "f553e9b";
    sha256 = "1jhr5gzihj8dkg0yc5dmi081v2isxharl0ph7v2grqj0bwqzl40j";
  };

  # - yoink the Z3 dependency name, because our Z3 package doesn't provide it.
  # - remove "dictionaries" version bound
  # - patch igraph package name
  postPatch = ''
    sed -i -e '/z3-solver/d' \
           -e 's/^dictionaries.*$/dictionaries/' \
           -e 's/python-igraph/igraph/' \
            requirements.txt
  '';

  # Tests are not correctly set up in the source tree.
  doCheck = false;
  pythonImportsCheck = [ "cozy" ];

  # There is some first-time-run codegen that we will force to happen.
  postInstall = ''
    $out/bin/cozy --help
  '';


  meta = with lib; {
    description = "The collection synthesizer";
    homepage = "https://cozy.uwplse.org/";
    license = licenses.asl20;
    maintainers = with maintainers; [ MostAwesomeDude ];
  };
}