mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 12:43:52 +00:00
26 lines
600 B
Nix
26 lines
600 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|