Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 554a789403ef
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 36e567fc082c
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Aug 13, 2019

  1. Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    Copy the full SHA
    4756d39 View commit details
  2. Merge pull request #66395 from catern/simpfix

    pythonPackages.simplefix: init at 1.0.12
    worldofpeace authored Aug 13, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    Copy the full SHA
    36e567f View commit details
Showing with 27 additions and 0 deletions.
  1. +25 −0 pkgs/development/python-modules/simplefix/default.nix
  2. +2 −0 pkgs/top-level/python-packages.nix
25 changes: 25 additions & 0 deletions pkgs/development/python-modules/simplefix/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -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;
});