pythonPackages.btrfs: 12 -> 13 (#120638)
This commit is contained in:
parent
fce6d9385d
commit
ce43e28a68
@ -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 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user