pythonPackages.geeknote: refactor move to python-modules
This commit is contained in:
parent
80c9049524
commit
b1ea3cdc67
38
pkgs/development/python-modules/geeknote/default.nix
Normal file
38
pkgs/development/python-modules/geeknote/default.nix
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, isPy27
|
||||||
|
, thrift
|
||||||
|
, beautifulsoup4
|
||||||
|
, markdown2
|
||||||
|
, sqlalchemy
|
||||||
|
, html2text
|
||||||
|
, evernote
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
version = "2015-05-11";
|
||||||
|
pname = "geeknote";
|
||||||
|
disabled = ! isPy27;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "VitaliyRodnenko";
|
||||||
|
repo = "geeknote";
|
||||||
|
rev = "8489a87d044e164edb321ba9acca8d4631de3dca";
|
||||||
|
sha256 = "0l16v4xnyqnsf84b1pma0jmdyxvmfwcv3sm8slrv3zv7zpmcm3lf";
|
||||||
|
};
|
||||||
|
|
||||||
|
/* build with tests fails with "Can not create application dirictory :
|
||||||
|
/homeless-shelter/.geeknotebuilder". */
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ thrift beautifulsoup4 markdown2 sqlalchemy html2text evernote ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Work with Evernote from command line";
|
||||||
|
homepage = http://www.geeknote.me;
|
||||||
|
license = licenses.gpl1;
|
||||||
|
maintainers = with maintainers; [ hbunke ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -4429,39 +4429,7 @@ in {
|
|||||||
|
|
||||||
thrift = callPackage ../development/python-modules/thrift { };
|
thrift = callPackage ../development/python-modules/thrift { };
|
||||||
|
|
||||||
geeknote = buildPythonPackage rec {
|
geeknote = callPackage ../development/python-modules/geeknote { };
|
||||||
version = "2015-05-11";
|
|
||||||
name = "geeknote-${version}";
|
|
||||||
disabled = ! isPy27;
|
|
||||||
|
|
||||||
src = pkgs.fetchFromGitHub {
|
|
||||||
owner = "VitaliyRodnenko";
|
|
||||||
repo = "geeknote";
|
|
||||||
rev = "8489a87d044e164edb321ba9acca8d4631de3dca";
|
|
||||||
sha256 = "0l16v4xnyqnsf84b1pma0jmdyxvmfwcv3sm8slrv3zv7zpmcm3lf";
|
|
||||||
};
|
|
||||||
|
|
||||||
/* build with tests fails with "Can not create application dirictory :
|
|
||||||
/homeless-shelter/.geeknotebuilder". */
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [
|
|
||||||
thrift
|
|
||||||
beautifulsoup4
|
|
||||||
markdown2
|
|
||||||
sqlalchemy
|
|
||||||
html2text
|
|
||||||
evernote
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Work with Evernote from command line";
|
|
||||||
homepage = http://www.geeknote.me;
|
|
||||||
license = licenses.gpl1;
|
|
||||||
maintainers = with maintainers; [ hbunke ];
|
|
||||||
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
trollius = callPackage ../development/python-modules/trollius {};
|
trollius = callPackage ../development/python-modules/trollius {};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user