mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
20 lines
518 B
Nix
20 lines
518 B
Nix
{ lib, fetchPypi, buildPythonPackage }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "leveldb";
|
|
version = "0.201";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1cffe776842917e09f073bd6ea5856c64136aebddbe51bd17ea29913472fecbf";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|