nixpkgs/pkgs/development/python-modules/apsw/default.nix
pacien a63c37cd5c pythonPackages.apsw: 3.29.0-r1 -> 3.30.1-r1
+ removing a patch that is now included.
2019-12-01 16:08:47 +01:00

25 lines
568 B
Nix

{ stdenv, buildPythonPackage, fetchFromGitHub, fetchpatch
, sqlite, isPyPy }:
buildPythonPackage rec {
pname = "apsw";
version = "3.30.1-r1";
disabled = isPyPy;
src = fetchFromGitHub {
owner = "rogerbinns";
repo = "apsw";
rev = version;
sha256 = "1zp38gj44bmzfxxpvgd7nixkp8vs2fpl839ag8vrh9z70dax22f0";
};
buildInputs = [ sqlite ];
meta = with stdenv.lib; {
description = "A Python wrapper for the SQLite embedded relational database engine";
homepage = https://github.com/rogerbinns/apsw;
license = licenses.zlib;
};
}