mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
31 lines
622 B
Nix
31 lines
622 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pathpy
|
|
, pathlib2
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.7.5";
|
|
pname = "pickleshare";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca";
|
|
};
|
|
|
|
propagatedBuildInputs = [ pathpy ]
|
|
++ stdenv.lib.optional (pythonOlder "3.4") pathlib2;
|
|
|
|
# No proper test suite
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Tiny 'shelve'-like database with concurrency support";
|
|
homepage = "https://github.com/vivainio/pickleshare";
|
|
license = licenses.mit;
|
|
};
|
|
|
|
}
|