pythonPackages.btrfs: 12 -> 13 (#120638)

This commit is contained in:
Luflosi 2021-04-30 09:00:16 +02:00 committed by GitHub
parent fce6d9385d
commit ce43e28a68
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,17 +1,15 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchPypi
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "btrfs"; pname = "btrfs";
version = "12"; version = "13";
src = fetchFromGitHub { src = fetchPypi {
owner = "knorrie"; inherit pname version;
repo = "python-btrfs"; sha256 = "sha256-NSyzhpHYDkunuU104XnbVCcVRNDoVBz4KuJRrE7WMO0=";
rev = "v${version}";
sha256 = "sha256-ZQSp+pbHABgBTrCwC2YsUUXAf/StP4ny7MEhBgCRqgE=";
}; };
# no tests (in v12) # no tests (in v12)
@ -23,6 +21,6 @@ buildPythonPackage rec {
homepage = "https://github.com/knorrie/python-btrfs"; homepage = "https://github.com/knorrie/python-btrfs";
license = licenses.lgpl3Plus; license = licenses.lgpl3Plus;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ maintainers.evils ]; maintainers = with maintainers; [ evils Luflosi ];
}; };
} }