Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 2, buildPythonPackage 3, fetchgit 4}: 5 6buildPythonPackage rec { 7 pname = "unpaddedbase64"; 8 version = "1.1.0"; 9 10 src = fetchgit { 11 url = "https://github.com/matrix-org/python-unpaddedbase64.git"; 12 rev = "refs/tags/v${version}"; 13 sha256 = "0if3fjfxga0bwdq47v77fs9hrcqpmwdxry2i2a7pdqsp95258nxd"; 14 }; 15 16 meta = with stdenv.lib; { 17 homepage = https://github.com/matrix-org/python-unpaddedbase64; 18 description = "Unpadded Base64"; 19 license = licenses.asl20; 20 }; 21 22}