about summary refs log tree commit diff
path: root/pkgs/development/python-modules/btrfs
diff options
context:
space:
mode:
authorLuflosi <Luflosi@users.noreply.github.com>2021-04-30 09:00:16 +0200
committerGitHub <noreply@github.com>2021-04-30 09:00:16 +0200
commitce43e28a68ce83f8414a570addb7185368e2263d (patch)
treebb30e47035b0811b98b460a6e981e1a69fc959e8 /pkgs/development/python-modules/btrfs
parentfce6d9385d354912acc93de897c92a076624f28b (diff)
pythonPackages.btrfs: 12 -> 13 (#120638)
Diffstat (limited to 'pkgs/development/python-modules/btrfs')
-rw-r--r--pkgs/development/python-modules/btrfs/default.nix14
1 files changed, 6 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/btrfs/default.nix b/pkgs/development/python-modules/btrfs/default.nix
index ff21d5670d72f..9bcb8f37330bb 100644
--- a/pkgs/development/python-modules/btrfs/default.nix
+++ b/pkgs/development/python-modules/btrfs/default.nix
@@ -1,17 +1,15 @@
 { lib
 , buildPythonPackage
-, fetchFromGitHub
+, fetchPypi
 }:
 
 buildPythonPackage rec {
   pname = "btrfs";
-  version = "12";
+  version = "13";
 
-  src = fetchFromGitHub {
-    owner = "knorrie";
-    repo = "python-btrfs";
-    rev = "v${version}";
-    sha256 = "sha256-ZQSp+pbHABgBTrCwC2YsUUXAf/StP4ny7MEhBgCRqgE=";
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "sha256-NSyzhpHYDkunuU104XnbVCcVRNDoVBz4KuJRrE7WMO0=";
   };
 
   # no tests (in v12)
@@ -23,6 +21,6 @@ buildPythonPackage rec {
     homepage = "https://github.com/knorrie/python-btrfs";
     license = licenses.lgpl3Plus;
     platforms = platforms.linux;
-    maintainers = [ maintainers.evils ];
+    maintainers = with maintainers; [ evils Luflosi ];
   };
 }