1
0
mirror of https://github.com/kmein/niveum synced 2026-03-21 12:21:08 +01:00
This commit is contained in:
Kierán Meinhardt
2019-04-05 22:16:16 +02:00
parent 579b5e4618
commit c70c4369dc
5 changed files with 78 additions and 439 deletions

12
packages/instaloader.nix Normal file
View File

@@ -0,0 +1,12 @@
{ buildPythonApplication, fetchPypi, requests }:
let
in buildPythonApplication rec {
pname = "instaloader";
version = "4.2.4";
src = fetchPypi {
inherit pname version;
sha256 = "02zqb02idk2pzks7dv42vigcmmpjpfhfdyjp911yr0ix7dy3q0b9";
};
propagatedBuildInputs = [ requests ];
doCheck = false;
}