about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/sqlite3dbm/default.nix
blob: 3057f89adf4e29afddeb94f2300a84330f7431d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
}:

buildPythonPackage rec {
  pname = "sqlite3dbm";
  version = "0.1.4";
  disabled = isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "4721607e0b817b89efdba7e79cab881a03164b94777f4cf796ad5dd59a7612c5";
  };

  meta = with lib; {
    description = "sqlite-backed dictionary";
    homepage = "https://github.com/Yelp/sqlite3dbm";
    license = licenses.asl20;
  };

}