pythonPackages.simplefix: init at 1.0.12

This commit is contained in:
Spencer Baugh 2019-08-09 16:19:33 +00:00
parent 4b7ee55613
commit 4756d3958b
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib, python, buildPythonPackage, fetchFromGitHub }:
buildPythonPackage rec {
pname = "simplefix";
version = "1.0.12";
src = fetchFromGitHub {
repo = "simplefix";
owner = "da4089";
rev = "v${version}";
sha256 = "0pnyqxpki1ija0kha7axi6irgiifcz4w77libagkv46b1z11cc4r";
};
checkPhase = ''
cd test
${python.interpreter} -m unittest all
'';
meta = with lib; {
description = "Simple FIX Protocol implementation for Python";
homepage = https://github.com/da4089/simplefix;
license = licenses.mit;
maintainers = with maintainers; [ catern ];
};
}

View File

@ -984,6 +984,8 @@ in {
inherit (pkgs) cmake qt5 llvmPackages;
});
simplefix = callPackage ../development/python-modules/simplefix { };
pyside2-tools = toPythonModule (callPackage ../development/python-modules/pyside2-tools {
inherit (pkgs) cmake qt5;
});