fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
28 lines
557 B
Nix
28 lines
557 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
path,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.7.5";
|
|
format = "setuptools";
|
|
pname = "pickleshare";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca";
|
|
};
|
|
|
|
propagatedBuildInputs = [ path ];
|
|
|
|
# No proper test suite
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Tiny 'shelve'-like database with concurrency support";
|
|
homepage = "https://github.com/vivainio/pickleshare";
|
|
license = licenses.mit;
|
|
};
|
|
}
|