pythonPackages.simplefix: init at 1.0.12
This commit is contained in:
parent
4b7ee55613
commit
4756d3958b
25
pkgs/development/python-modules/simplefix/default.nix
Normal file
25
pkgs/development/python-modules/simplefix/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -984,6 +984,8 @@ in {
|
|||||||
inherit (pkgs) cmake qt5 llvmPackages;
|
inherit (pkgs) cmake qt5 llvmPackages;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
simplefix = callPackage ../development/python-modules/simplefix { };
|
||||||
|
|
||||||
pyside2-tools = toPythonModule (callPackage ../development/python-modules/pyside2-tools {
|
pyside2-tools = toPythonModule (callPackage ../development/python-modules/pyside2-tools {
|
||||||
inherit (pkgs) cmake qt5;
|
inherit (pkgs) cmake qt5;
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user