summary refs log tree commit diff
path: root/pkgs/applications/networking/flexget/default.nix
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-07-11 00:02:23 +0000
committerGitHub <noreply@github.com>2021-07-11 00:02:23 +0000
commit606194e1c0c34b4b00048651356eedb2c0628621 (patch)
tree0eed29d79ba9f65e5843480fdfd645302ada7953 /pkgs/applications/networking/flexget/default.nix
parent77e4ca2baf3fcc6e73382280c6bf010d5cd7a70a (diff)
parentb7e408dd17f6868ff5d3f50d4b44eaee067412cc (diff)
downloadnixpkgs-606194e1c0c34b4b00048651356eedb2c0628621.tar
nixpkgs-606194e1c0c34b4b00048651356eedb2c0628621.tar.gz
nixpkgs-606194e1c0c34b4b00048651356eedb2c0628621.tar.bz2
nixpkgs-606194e1c0c34b4b00048651356eedb2c0628621.tar.lz
nixpkgs-606194e1c0c34b4b00048651356eedb2c0628621.tar.xz
nixpkgs-606194e1c0c34b4b00048651356eedb2c0628621.tar.zst
nixpkgs-606194e1c0c34b4b00048651356eedb2c0628621.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/applications/networking/flexget/default.nix')
-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 ];
   };
 }