about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/sqlite3dbm/default.nix
blob: 66a1200eeb2a54f2817ec1de09e6c7b59fe6d897 (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
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
}:

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

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

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

}