mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 14:41:17 +00:00
Merge pull request #61066 from aanderse/pythonPackages.leveldb
pythonPackages.leveldb: init at 0.194
This commit is contained in:
commit
252420b21d
19
pkgs/development/python-modules/leveldb/default.nix
Normal file
19
pkgs/development/python-modules/leveldb/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ lib, fetchPypi, buildPythonPackage }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "leveldb";
|
||||
version = "0.194";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0f6d1y65k6miimic82n8zsx50z9k982mvzp90crwcv1knjrphcww";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://code.google.com/archive/p/py-leveldb/";
|
||||
description = "Thread-safe Python bindings for LevelDB";
|
||||
platforms = [ "x86_64-linux" "i686-linux" ];
|
||||
license = licenses.bsd3;
|
||||
maintainers = [ maintainers.aanderse ];
|
||||
};
|
||||
}
|
|
@ -3097,6 +3097,8 @@ in {
|
|||
|
||||
lektor = callPackage ../development/python-modules/lektor { };
|
||||
|
||||
leveldb = callPackage ../development/python-modules/leveldb { };
|
||||
|
||||
python-oauth2 = callPackage ../development/python-modules/python-oauth2 { };
|
||||
|
||||
python_openzwave = callPackage ../development/python-modules/python_openzwave {
|
||||
|
|
Loading…
Reference in a new issue