1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/packages/gourmet.nix

15 lines
463 B
Nix
Raw Normal View History

2019-08-27 17:24:53 +02:00
# { stdenv, python }:
2022-03-10 21:52:12 +01:00
{pkgs ? import <nixpkgs> {}}:
2020-06-10 17:37:25 +02:00
with pkgs;
with pkgs.python2Packages;
2022-03-10 21:52:12 +01:00
buildPythonApplication rec {
pname = "gourmet";
version = "0.17.4";
src = builtins.fetchTarball {
url = "https://github.com/thinkle/gourmet/archive/${version}.tar.gz";
};
buildInputs = [distutils_extra intltool];
propagatedBuildInputs = [sqlalchemy reportlab lxml];
meta = with stenv.lib; {maintainers = with maintainers; [kmein];};
}