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