lol
0
fork

Configure Feed

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

python310Packages.python-slugify: 6.1.1 -> 6.1.2

authored by

Fabian Affolter and committed by
Jonathan Ringer
0af0534f a9221ef2

+7 -5
+7 -5
pkgs/development/python-modules/python-slugify/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 - , fetchPypi 3 + , fetchFromGitHub 4 4 , pytestCheckHook 5 5 , pythonOlder 6 6 , text-unidecode ··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "python-slugify"; 12 - version = "6.1.1"; 12 + version = "6.1.2"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.6"; 16 16 17 - src = fetchPypi { 18 - inherit pname version; 19 - hash = "sha256-AAAzl/TjFBTpIs5WezpNoozxQ2pT0zLJrutRx9jEaf0="; 17 + src = fetchFromGitHub { 18 + owner = "un33k"; 19 + repo = pname; 20 + rev = "v${version}"; 21 + hash = "sha256-JGjUNBEMuICsaClQGDSGX4qFRjecVKzmpPNRUTvfwho="; 20 22 }; 21 23 22 24 propagatedBuildInputs = [