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
, 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 ];
};
}