mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 15:26:34 +01:00
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
35 lines
729 B
Nix
35 lines
729 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
unittestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "simplefix";
|
|
version = "1.0.17";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "simplefix";
|
|
owner = "da4089";
|
|
tag = "v${version}";
|
|
hash = "sha256-D85JW3JRQ1xErw6krMbAg94WYjPi76Xqjv/MGNMY5ZU=";
|
|
};
|
|
|
|
nativeCheckInputs = [ unittestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "simplefix" ];
|
|
|
|
unittestFlagsArray = [
|
|
"-s"
|
|
"test"
|
|
];
|
|
|
|
meta = {
|
|
description = "Simple FIX Protocol implementation for Python";
|
|
homepage = "https://github.com/da4089/simplefix";
|
|
changelog = "https://github.com/da4089/simplefix/releases/tag/v${version}";
|
|
license = lib.licenses.mit;
|
|
};
|
|
}
|