1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/package/gdom/default.nix
Kierán Meinhardt e2ee80e2bb + generate-shell-nix
2018-10-10 13:03:22 +02:00

15 lines
511 B
Nix

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;
};
}