blob: 377a014c6694eb3a89d3d7279ecdddbfbaa0bae4 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pysmt";
version = "0.9.6";
format = "setuptools";
src = fetchFromGitHub {
owner = "pysmt";
repo = "pysmt";
rev = "v${version}";
hash = "sha256-HmEdCJOF04h0z5UPpfYa07b78EEBj5KyVAk6aNRFPEo=";
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pysmt" ];
meta = {
description = "Python library for SMT formulae manipulation and solving";
mainProgram = "pysmt-install";
homepage = "https://github.com/pysmt/pysmt";
license = with lib.licenses; [ asl20 ];
maintainers = with lib.maintainers; [ fab ];
};
}
|