pythonPackages.sysv_ipc: init at 1.0.1
This commit is contained in:
parent
ba059b9a23
commit
aa92851f77
22
pkgs/development/python-modules/sysv_ipc/default.nix
Normal file
22
pkgs/development/python-modules/sysv_ipc/default.nix
Normal file
@ -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 ];
|
||||
};
|
||||
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user