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: ba059b9a23dc
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: aa92851f778d
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Jan 18, 2020

  1. pythonPackages.sysv_ipc: init at 1.0.1

    risicle authored and Jon committed Jan 18, 2020
    Copy the full SHA
    aa92851 View commit details
Showing with 24 additions and 0 deletions.
  1. +22 −0 pkgs/development/python-modules/sysv_ipc/default.nix
  2. +2 −0 pkgs/top-level/python-packages.nix
22 changes: 22 additions & 0 deletions pkgs/development/python-modules/sysv_ipc/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
pname = "sysv_ipc";
version = "1.0.1";

src = fetchPypi {
inherit pname version;
sha256 = "1p5lx3yz4p40rfb453m80a4hh8341yp4dki2nhhxz7bq2zfi1zwf";
};

meta = with stdenv.lib; {
description = "SysV IPC primitives (semaphores, shared memory and message queues)";
license = licenses.bsd3;
homepage = http://semanchuk.com/philip/sysv_ipc/;
maintainers = with maintainers; [ ris ];
};

}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -5465,6 +5465,8 @@ in {
inherit (pkgs) pkgconfig systemd;
};

sysv_ipc = callPackage ../development/python-modules/sysv_ipc { };

tabulate = callPackage ../development/python-modules/tabulate { };

tadasets = callPackage ../development/python-modules/tadasets { };