File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed
pkgs/development/python-modules/qrcode Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change 11{
22 lib ,
33 buildPythonPackage ,
4- fetchPypi ,
4+ fetchFromGitHub ,
55 pythonAtLeast ,
66
77 # build-system
2020
2121buildPythonPackage rec {
2222 pname = "qrcode" ;
23- version = "8.0 " ;
23+ version = "8.2 " ;
2424 pyproject = true ;
2525
26- src = fetchPypi {
27- inherit pname version ;
28- hash = "sha256-AlzisVD3/kKW0Rbum61FWmZDq09ufc5UFhOkdYy840c=" ;
26+ src = fetchFromGitHub {
27+ owner = "lincolnloop" ;
28+ repo = "python-qrcode" ;
29+ tag = "v${ version } " ;
30+ hash = "sha256-qLIYUFnBJQGidnfC0bQAkO/aUmT94uXFMeMhnUgUnfQ=" ;
2931 } ;
3032
3133 build-system = [ poetry-core ] ;
@@ -56,12 +58,12 @@ buildPythonPackage rec {
5658 "test_piped"
5759 ] ;
5860
59- meta = with lib ; {
61+ meta = {
6062 description = "Python QR Code image generator" ;
6163 mainProgram = "qr" ;
6264 homepage = "https://github.com/lincolnloop/python-qrcode" ;
6365 changelog = "https://github.com/lincolnloop/python-qrcode/blob/v${ version } /CHANGES.rst" ;
64- license = licenses . bsd3 ;
65- maintainers = [ ] ;
66+ license = lib . licenses . bsd3 ;
67+ maintainers = with lib . maintainers ; [ attila ] ;
6668 } ;
6769}
You can’t perform that action at this time.
0 commit comments