1
0
mirror of https://github.com/kmein/niveum synced 2026-03-18 02:51:08 +01:00

+ generate-shell-nix

This commit is contained in:
Kierán Meinhardt
2018-10-10 13:03:22 +02:00
parent 5b53dd89ce
commit e2ee80e2bb
6 changed files with 66 additions and 0 deletions

14
package/gdom/default.nix Normal file
View File

@@ -0,0 +1,14 @@
with import <nixpkgs> {};
buildPythonPackage {
name = "gdom";
src = fetchurl {
url = "https://files.pythonhosted.org/packages/76/79/1ccbf38c32576dbb29efdc35819f96a99768266cdf6dc1586aef0e9fbe73/gdom-1.0.0.tar.gz";
md5 = "f1ec05032cefc74d023fcdf8a24177f6";
};
propagatedBuildInputs = with pkgs.python36Packages; [ graphene flask-graphql pyquery requests ];
meta = with stdenv.lib; {
description = "GDOM";
homepage = http://github.com/syrusakbary/gdom;
license = licenses.mit;
};
}