blob: 18dfe1329d3ac5b12a37ef1d9d2ab8d52d61ae3c (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "simplefix";
version = "1.0.17";
format = "setuptools";
src = fetchFromGitHub {
repo = "simplefix";
owner = "da4089";
tag = "v${version}";
hash = "sha256-D85JW3JRQ1xErw6krMbAg94WYjPi76Xqjv/MGNMY5ZU=";
};
nativeCheckInputs = [ unittestCheckHook ];
pythonImportsCheck = [ "simplefix" ];
unittestFlagsArray = [
"-s"
"test"
];
meta = {
description = "Simple FIX Protocol implementation for Python";
homepage = "https://github.com/da4089/simplefix";
changelog = "https://github.com/da4089/simplefix/releases/tag/v${version}";
license = lib.licenses.mit;
};
}
|