ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pickleshare / default.nix
blob381f03bdce5cc85172330b0f64d62b57265d2237
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , path
5 , pathlib2
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   version = "0.7.5";
11   pname = "pickleshare";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca";
16   };
18   propagatedBuildInputs = [ path ]
19     ++ lib.optional (pythonOlder "3.4") pathlib2;
21   # No proper test suite
22   doCheck = false;
24   meta = with lib; {
25     description = "Tiny 'shelve'-like database with concurrency support";
26     homepage = "https://github.com/vivainio/pickleshare";
27     license = licenses.mit;
28   };