Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / gpt-2-simple / default.nix
blobf627ead49d0a513c6b749e968a00182761cc76a6
1 { lib, buildPythonPackage, fetchFromGitHub, regex, requests, tqdm, numpy
2 , toposort, tensorflow }:
4 buildPythonPackage rec {
5   pname = "gpt-2-simple";
6   version = "0.8.1";
8   src = fetchFromGitHub {
9     owner = "minimaxir";
10     repo = "gpt-2-simple";
11     rev = "v${version}";
12     hash = "sha256-WwD4sDcc28zXEOISJsq8e+rgaNrrgIy79Wa4J3E7Ovc=";
13   };
15   propagatedBuildInputs = [ regex requests tqdm numpy toposort tensorflow ];
17   dontCheck = true; # no tests in upstream
19   meta = with lib; {
20     description =
21       "Easily retrain OpenAI's GPT-2 text-generating model on new texts";
22     homepage = "https://github.com/minimaxir/gpt-2-simple";
23     license = licenses.mit;
24     maintainers = with maintainers; [ ckie ];
25   };