depot/third_party/nixpkgs/pkgs/development/python-modules/simplefix/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

39 lines
841 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "simplefix";
version = "1.0.17";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
repo = "simplefix";
owner = "da4089";
rev = "refs/tags/v${version}";
hash = "sha256-D85JW3JRQ1xErw6krMbAg94WYjPi76Xqjv/MGNMY5ZU=";
};
nativeCheckInputs = [ unittestCheckHook ];
pythonImportsCheck = [ "simplefix" ];
unittestFlagsArray = [
"-s"
"test"
];
meta = with lib; {
description = "Simple FIX Protocol implementation for Python";
homepage = "https://github.com/da4089/simplefix";
changelog = "https://github.com/da4089/simplefix/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ catern ];
};
}