summary refs log tree commit diff
path: root/pkgs/applications/networking/flexget
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-07-09 18:56:21 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-07-09 18:56:21 +0200
commit4364b96eb6595740628c1f0ea4d1d6232ea14b87 (patch)
treef41423740f8cf407ec37cfe6e267d6bd41897b62 /pkgs/applications/networking/flexget
parent3191d4f0af44159e6f215b7fa975a41fd00b8f01 (diff)
downloadnixpkgs-4364b96eb6595740628c1f0ea4d1d6232ea14b87.tar
nixpkgs-4364b96eb6595740628c1f0ea4d1d6232ea14b87.tar.gz
nixpkgs-4364b96eb6595740628c1f0ea4d1d6232ea14b87.tar.bz2
nixpkgs-4364b96eb6595740628c1f0ea4d1d6232ea14b87.tar.lz
nixpkgs-4364b96eb6595740628c1f0ea4d1d6232ea14b87.tar.xz
nixpkgs-4364b96eb6595740628c1f0ea4d1d6232ea14b87.tar.zst
nixpkgs-4364b96eb6595740628c1f0ea4d1d6232ea14b87.zip
flexget: 3.1.127 -> 3.1.131
Diffstat (limited to 'pkgs/applications/networking/flexget')
-rw-r--r--pkgs/applications/networking/flexget/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/applications/networking/flexget/default.nix b/pkgs/applications/networking/flexget/default.nix
index 61e42ce22ec..b898ce33742 100644
--- a/pkgs/applications/networking/flexget/default.nix
+++ b/pkgs/applications/networking/flexget/default.nix
@@ -1,12 +1,13 @@
 { lib, python3Packages }:
 
 python3Packages.buildPythonApplication rec {
-  pname = "FlexGet";
-  version = "3.1.127";
+  pname = "flexget";
+  version = "3.1.131";
 
   src = python3Packages.fetchPypi {
-    inherit pname version;
-    sha256 = "25a973eb54f2f9ccd422d536b29038c570de3584b8174d993119e3c6b434cc54";
+    pname = "FlexGet";
+    inherit version;
+    sha256 = "sha256-wjMtCrffRhk7NL+Z0PeljuDc3WjVWSMsjWLbqo8qUjU=";
   };
 
   postPatch = ''
@@ -61,9 +62,9 @@ python3Packages.buildPythonApplication rec {
   ];
 
   meta = with lib; {
-    homepage    = "https://flexget.com/";
+    homepage = "https://flexget.com/";
     description = "Multipurpose automation tool for all of your media";
-    license     = licenses.mit;
+    license = licenses.mit;
     maintainers = with maintainers; [ marsam ];
   };
 }