Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 479 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "btrfs"; 8 version = "11"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "1w92sj47wy53ygz725xr613k32pk5khi0g9lrpp6img871241hrx"; 13 }; 14 15 meta = with stdenv.lib; { 16 description = "Inspect btrfs filesystems"; 17 homepage = "https://github.com/knorrie/python-btrfs"; 18 license = licenses.lgpl3Plus; 19 platforms = platforms.linux; 20 maintainers = [ maintainers.evils ]; 21 }; 22}