mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
108 lines
1.7 KiB
Nix
108 lines
1.7 KiB
Nix
{ lib
|
|
, babel
|
|
, buildPythonPackage
|
|
, colorama
|
|
, cssselect
|
|
, feedparser
|
|
, fetchFromGitLab
|
|
, fetchpatch
|
|
, gdata
|
|
, gnupg
|
|
, google-api-python-client
|
|
, html2text
|
|
, libyaml
|
|
, lxml
|
|
, mechanize
|
|
, nose
|
|
, packaging
|
|
, pdfminer-six
|
|
, pillow
|
|
, prettytable
|
|
, pyqt5
|
|
, python-dateutil
|
|
, pythonOlder
|
|
, pyyaml
|
|
, requests
|
|
, simplejson
|
|
, termcolor
|
|
, testers
|
|
, unidecode
|
|
, woob
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "woob";
|
|
version = "3.3.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "woob";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-aPkMfPRDjPfHIlGDEvorGwk09yQuEWwOkJJUST0vLAs=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
packaging
|
|
pyqt5
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
babel
|
|
colorama
|
|
cssselect
|
|
python-dateutil
|
|
feedparser
|
|
gdata
|
|
gnupg
|
|
google-api-python-client
|
|
html2text
|
|
libyaml
|
|
lxml
|
|
mechanize
|
|
packaging
|
|
pdfminer-six
|
|
pillow
|
|
prettytable
|
|
pyqt5
|
|
pyyaml
|
|
requests
|
|
simplejson
|
|
termcolor
|
|
unidecode
|
|
];
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
url = "https://gitlab.com/woob/woob/-/commit/861b1bb92be53998d8174dcca6fa643d1c7cde12.patch";
|
|
sha256 = "sha256-IXcE59pMFtPLTOYa2inIvuA14USQvck6Q4hrKZTC0DE=";
|
|
})
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
nose
|
|
];
|
|
|
|
checkPhase = ''
|
|
nosetests
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"woob"
|
|
];
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = woob;
|
|
version = "v${version}";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Collection of applications and APIs to interact with websites";
|
|
homepage = "https://woob.tech";
|
|
license = licenses.lgpl3Plus;
|
|
maintainers = with maintainers; [ DamienCassou ];
|
|
};
|
|
}
|