Merge pull request #66395 from catern/simpfix

pythonPackages.simplefix: init at 1.0.12
This commit is contained in:
worldofpeace 2019-08-13 12:48:13 -04:00 committed by GitHub
commit 36e567fc08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

@ -986,6 +986,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;
});