nur-packages

My NUR packages
git clone git://git.sikmir.ru/nur-packages
Log | Files | Refs | README | LICENSE

default.nix (618B)


      1 {
      2   lib,
      3   fetchFromGitHub,
      4   python3Packages,
      5 }:
      6 
      7 python3Packages.buildPythonApplication rec {
      8   pname = "zdict";
      9   version = "5.0.1";
     10 
     11   src = fetchFromGitHub {
     12     owner = "zdict";
     13     repo = "zdict";
     14     rev = version;
     15     hash = "sha256-vZpxJkKBHo9fO7xNN9Is7BumZhAkepVK0dpk+Y/1YBM=";
     16   };
     17 
     18   dependencies = with python3Packages; [
     19     beautifulsoup4
     20     peewee
     21     requests
     22   ];
     23 
     24   doCheck = false;
     25 
     26   meta = {
     27     description = "The last online dictionary framework you need";
     28     homepage = "https://github.com/zdict/zdict";
     29     license = lib.licenses.gpl3;
     30     maintainers = [ lib.maintainers.sikmir ];
     31   };
     32 }