pythonPackages.pickleshare: refactor move to python-modules
This commit is contained in:
parent
9ec90782a7
commit
bb37de46d4
30
pkgs/development/python-modules/pickleshare/default.nix
Normal file
30
pkgs/development/python-modules/pickleshare/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pathpy
|
||||
, pathlib2
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "0.7.4";
|
||||
pname = "pickleshare";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "84a9257227dfdd6fe1b4be1319096c20eb85ff1e82c7932f36efccfe1b09737b";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
|
||||
}
|
@ -3141,26 +3141,7 @@ in {
|
||||
|
||||
pgspecial = callPackage ../development/python-modules/pgspecial { };
|
||||
|
||||
pickleshare = buildPythonPackage rec {
|
||||
version = "0.7.4";
|
||||
name = "pickleshare-${version}";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/p/pickleshare/${name}.tar.gz";
|
||||
sha256 = "84a9257227dfdd6fe1b4be1319096c20eb85ff1e82c7932f36efccfe1b09737b";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [pathpy] ++ optional (pythonOlder "3.4") pathlib2;
|
||||
|
||||
# No proper test suite
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Tiny 'shelve'-like database with concurrency support";
|
||||
homepage = https://github.com/vivainio/pickleshare;
|
||||
license = licenses.mit;
|
||||
};
|
||||
};
|
||||
pickleshare = callPackage ../development/python-modules/pickleshare { };
|
||||
|
||||
piep = buildPythonPackage rec {
|
||||
version = "0.8.0";
|
||||
|
Loading…
Reference in New Issue
Block a user