pythonPackages.sorl_thumbnail: refactor move to python-modules
This commit is contained in:
parent
3ed37c1d93
commit
b8ba7b8cdd
24
pkgs/development/python-modules/sorl_thumbnail/default.nix
Normal file
24
pkgs/development/python-modules/sorl_thumbnail/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "sorl-thumbnail";
|
||||
version = "11.12";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "050b9kzbx7jvs3qwfxxshhis090hk128maasy8pi5wss6nx5kyw4";
|
||||
};
|
||||
|
||||
# Disabled due to an improper configuration error when tested against django. This looks like something broken in the test cases for sorl.
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://sorl-thumbnail.readthedocs.org/en/latest/;
|
||||
description = "Thumbnails for Django";
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
|
||||
}
|
@ -3845,23 +3845,7 @@ in {
|
||||
|
||||
sockjs-tornado = callPackage ../development/python-modules/sockjs-tornado { };
|
||||
|
||||
sorl_thumbnail = buildPythonPackage rec {
|
||||
name = "sorl-thumbnail-11.12";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/s/sorl-thumbnail/${name}.tar.gz";
|
||||
sha256 = "050b9kzbx7jvs3qwfxxshhis090hk128maasy8pi5wss6nx5kyw4";
|
||||
};
|
||||
|
||||
# Disabled due to an improper configuration error when tested against django. This looks like something broken in the test cases for sorl.
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
homepage = http://sorl-thumbnail.readthedocs.org/en/latest/;
|
||||
description = "Thumbnails for Django";
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
};
|
||||
sorl_thumbnail = callPackage ../development/python-modules/sorl_thumbnail { };
|
||||
|
||||
supervisor = callPackage ../development/python-modules/supervisor {};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user