lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python310Packages.sqlobject: specify license

authored by

Fabian Affolter and committed by
GitHub
848d647c 8302b9e9

+5 -2
+5 -2
pkgs/development/python-modules/sqlobject/default.nix
··· 6 6 , pastedeploy 7 7 , paste 8 8 , pydispatcher 9 + , pythonOlder 9 10 }: 10 11 11 12 buildPythonPackage rec { ··· 13 14 version = "3.10.0"; 14 15 format = "setuptools"; 15 16 17 + disabled = pythonOlder "3.7"; 18 + 16 19 src = fetchPypi { 17 20 pname = "SQLObject"; 18 21 inherit version; 19 - sha256 = "sha256-i/wBFu8z/DS5Gtj00ZKrbuPsvqDH3O5GmbrknGbvJ7A="; 22 + hash = "sha256-i/wBFu8z/DS5Gtj00ZKrbuPsvqDH3O5GmbrknGbvJ7A="; 20 23 }; 21 24 22 25 propagatedBuildInputs = [ ··· 42 45 meta = with lib; { 43 46 description = "Object Relational Manager for providing an object interface to your database"; 44 47 homepage = "http://www.sqlobject.org/"; 45 - license = licenses.lgpl21; 48 + license = licenses.lgpl21Only; 46 49 maintainers = with maintainers; [ ]; 47 50 }; 48 51 }