mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
29 lines
774 B
Nix
29 lines
774 B
Nix
{ lib, buildPythonPackage, fetchPypi, requests, requests-cache, beautifulsoup4 }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "PySychonaut";
|
|
version = "0.6.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1wgk445gmi0x7xmd8qvnyxy1ka0n72fr6nrhzdm29q6687dqyi7h";
|
|
};
|
|
|
|
preConfigure = ''
|
|
substituteInPlace setup.py --replace "bs4" "beautifulsoup4"
|
|
'';
|
|
|
|
propagatedBuildInputs = [ requests requests-cache beautifulsoup4 ];
|
|
|
|
# No tests available
|
|
doCheck = false;
|
|
pythonImportsCheck = [ "pysychonaut" ];
|
|
|
|
meta = with lib; {
|
|
description = "Unofficial python api for Erowid, PsychonautWiki and AskTheCaterpillar";
|
|
homepage = "https://github.com/OpenJarbas/PySychonaut";
|
|
maintainers = [ maintainers.ivar ];
|
|
license = licenses.asl20;
|
|
};
|
|
}
|