nixpkgs/pkgs/development/python-modules/minidb/default.nix

30 lines
590 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchurl
, nose
}:
buildPythonPackage rec {
pname = "minidb";
version = "2.0.2";
src = fetchurl {
url = "https://github.com/thp/minidb/archive/${version}.tar.gz";
sha256 = "17rvkpq8v7infvbgsi48vnxamhxb3f635nqn0sln7yyvh4i9k8a0";
};
checkInputs = [ nose ];
checkPhase = ''
nosetests test
'';
meta = with stdenv.lib; {
description = "A simple SQLite3-based store for Python objects";
homepage = https://thp.io/2010/minidb/;
license = stdenv.lib.licenses.isc;
maintainers = [ stdenv.lib.maintainers.tv ];
};
}