mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
pythonPackages.cjson: Move to own file
This commit is contained in:
parent
6565c7cf7a
commit
3c991104a0
18
pkgs/development/python-modules/cjson/default.nix
Normal file
18
pkgs/development/python-modules/cjson/default.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi, isPy3k, isPyPy }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "python-cjson";
|
||||
version = "1.1.0";
|
||||
disabled = isPy3k || isPyPy;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1cz87pd411h1fj5am99i19jp53yizcz9mkg1a7cc6a1pb6vsn7x0";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A very fast JSON encoder/decoder for Python";
|
||||
homepage = http://ag-projects.com/;
|
||||
license = licenses.lgpl2;
|
||||
};
|
||||
}
|
@ -1532,23 +1532,7 @@ in {
|
||||
|
||||
cherrypy = callPackage ../development/python-modules/cherrypy {};
|
||||
|
||||
cjson = buildPythonPackage rec {
|
||||
name = "python-cjson-${version}";
|
||||
version = "1.1.0";
|
||||
disabled = isPy3k || isPyPy;
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/p/python-cjson/${name}.tar.gz";
|
||||
sha256 = "a01fabb7593728c3d851e1cd9a3efbd18f72650a31a5aa8a74018640da3de8b3";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "A very fast JSON encoder/decoder for Python";
|
||||
homepage = "http://ag-projects.com/";
|
||||
license = licenses.lgpl2;
|
||||
platforms = platforms.all;
|
||||
};
|
||||
};
|
||||
cjson = callPackage ../development/python-modules/cjson { };
|
||||
|
||||
cld2-cffi = callPackage ../development/python-modules/cld2-cffi {};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user