pythonPackages.fastrlock: init at 0.3
This commit is contained in:
parent
05573d3e06
commit
a9379a6d67
18
pkgs/development/python-modules/fastrlock/default.nix
Normal file
18
pkgs/development/python-modules/fastrlock/default.nix
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "fastrlock";
|
||||||
|
version = "0.3";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "00mr9b15d539z89ng5nf89s2ryhk90xwx95jal77ma0wslixrk5d";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/scoder/fastrlock;
|
||||||
|
description = "A fast RLock implementation for CPython";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ hyphon81 ];
|
||||||
|
};
|
||||||
|
}
|
@ -8148,6 +8148,8 @@ in {
|
|||||||
|
|
||||||
fastimport = callPackage ../development/python-modules/fastimport { };
|
fastimport = callPackage ../development/python-modules/fastimport { };
|
||||||
|
|
||||||
|
fastrlock = callPackage ../development/python-modules/fastrlock {};
|
||||||
|
|
||||||
feedgen = callPackage ../development/python-modules/feedgen { };
|
feedgen = callPackage ../development/python-modules/feedgen { };
|
||||||
|
|
||||||
feedgenerator = callPackage ../development/python-modules/feedgenerator {
|
feedgenerator = callPackage ../development/python-modules/feedgenerator {
|
||||||
|
Loading…
Reference in New Issue
Block a user