Files
nixpkgs/pkgs/development/python-modules/apsw/default.nix
T

25 lines
556 B
Nix
Raw Normal View History

2018-04-13 09:43:57 +02:00
{ stdenv, buildPythonPackage, fetchFromGitHub
, sqlite, isPyPy }:
buildPythonPackage rec {
pname = "apsw";
2018-04-13 09:43:57 +02:00
version = "3.22.0-r1";
disabled = isPyPy;
2018-04-13 09:43:57 +02:00
src = fetchFromGitHub {
owner = "rogerbinns";
repo = "apsw";
rev = version;
sha256 = "02ldvshcgr4c7c8anp4flfnw8g8ys5bflkb8b51rb618qxhhwyak";
};
buildInputs = [ sqlite ];
meta = with stdenv.lib; {
description = "A Python wrapper for the SQLite embedded relational database engine";
2018-04-13 09:43:57 +02:00
homepage = https://github.com/rogerbinns/apsw;
license = licenses.zlib;
};
}